Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b346201

Browse files
author
Noer Paanakker
committed
adjusted content test readme
1 parent 695ce10 commit b346201

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

test.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,25 @@
33
You’ll be doing a final JavaScript test. It will be about all the JavaScript you’ve learned, from JavaScript 1 to JavaScript 3.
44

55
## Practical information
6-
- The test will start at **10.30 until 11.30**. The door will open at 10.15. **Be on time!**
7-
- It will be done online and you can use google, so please bring your laptop.
6+
7+
- The test will last **2 hours**.
8+
- It will be done on the computer.
89
- You can’t use your old code.
9-
- There will be 5 or 6 questions.
10+
- There will be 6 or 7 questions.
1011

1112
## Purpose of the test
13+
1214
The purpose of this exam is to test your comprehension of JavaScript
15+
1316
- The goal for us is to know how solid your knowledge is and if you need any extra assistance throughout the program.
1417
- The goal for you is to test how well enough you master the material so far.
18+
1519
Like the homework you will get feedback and are expected to improve upon your weak points.
1620

1721
## Test material
22+
1823
The test will be about all main JavaScript concepts we have discussed for the past weeks of JS. The following are the most important that will be tested:
24+
1925
- `Functions & Variables`
2026
- `Scope`
2127
- `Loops`
@@ -28,30 +34,33 @@ The test will be about all main JavaScript concepts we have discussed for the pa
2834
- `Try…catch`
2935

3036
## Preparation
37+
3138
Advice on how to optimally prepare:
39+
3240
- Find out 2 things about each concepts listed above: (1) how does the basic structure look and (2) what is the most common use case.
3341
- Ask questions through Slack to your teachers and/or your classmates.
3442
- Practice for understanding (why something is the case), NOT just for repetition shake (and hoping ‘you will understand it one day’).
3543
- Make a summary of all the study material.
3644
- After you prepared try to make the sample questions that are in this file.
3745

3846
## During the test
47+
3948
Advise on how to make a test:
40-
- **Look for low hanging fruit**. Which of the assignments is easiest for you to do? Tackle that one first.
49+
50+
- **Look for low hanging fruit**. Which of the assignments is easiest for you to do? Tackle that one first.
4151
- **When writing your code, write small chunks at a time, testing each time before continuing**. Use temporary console.log statements to show intermediate results (remove when no longer needed). Don't continue until the code written sofar is working correctly. If you write a whole bunch of code without intermediate testing it becomes difficult to pinpoint where issues occur.
4252
- **If you get stuck in an assignment, move on** to the next one. You can always come back later if time permits.
4353
- When writing code for the browser, **always open the Chrome Developer Tools**. Watch out for error messages in the browser console. Inspect the network tab to examine the data returned from a remote API.
4454
- **Don't over-deliver**. If styling is not required by the assignment, skip it. If time permits, you can do it later. The same goes for handling fetch errors. Focus on delivering a minimum working version that meets the requirement. Ticking off a working version again reduces your stress level. Come back later, if time permits, to embellish your solutions.
4555
- **Don't use Google as a replacement for common sense.**
46-
- After finishing an assignment, read the question again to **make sure you actually gave an answer to the question.**
56+
- After finishing an assignment, read the question again to **make sure you actually gave an answer to the question.**
4757
- Before handing in the test, read it all over again to **pick out the small mistakes.**
4858

4959
## Sample questions
5060

5161
1. Using JavaScript only (adding HTML to index.html is NOT allowed), create a button element (with text "click me!") and an empty image element and add it to the document. When the button is clicked, insert an image URL into the <img> tag and remove the button. Use the following image URL: https://thehub.dk/files/5ad4b4a9f9ac4aa13c3d2d58/logo_upload-6d537cf7e5de664db275b32b3c6ae12d.png
5262

5363
2. Make an API call using the Fetch API or the regular XMLHttpRequest (whichever one you're more comfortable with). Use the following API: https://reqres.in/api/users
54-
Parse the response and then display the "first_name" and "last_name" of the first three users within the DOM (inside an unordered list)
64+
Parse the response and then display the "first_name" and "last_name" of the first three users within the DOM (inside an unordered list)
5565

5666
If there’s anything unclear please let us know. Also, if any of you need additional support, now is the moment to let us know as we could pair you up with someone to answer any questions you may have.
57-

0 commit comments

Comments
 (0)