Skip to content

Commit

Permalink
Removed null words. This happen only on Copy Paste (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
sofiChang authored Dec 13, 2020
1 parent 444f951 commit ed26a01
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions node.js/node.js-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,28 +241,28 @@ fs.appendFilechello.txt'l 'Hello ${user} on ${system}r, (err) => { if (err) thro

### Q33. Which choice is null a valid method on event emitters?

- [ ] startnull
- [ ] onnull
- [ ] oncenull
- [ ] start
- [ ] on
- [ ] once
- [ ] off

### Q34. Which special object is an instance of EventEmitter?Which special object is an instance of null?

- [ ] processnull
- [ ] Buffernull
- [ ] rootnull
- [ ] process
- [ ] Buffer
- [ ] root
- [ ] require

### Q35. What is the command to get a list of available commands for Node.js?What is the command to get a list of available commands for Node.js?

- [ ] node index.js -xnull
- [ ] node -vnull
- [ ] node -hnull
- [ ] node index.js -x
- [ ] node -v
- [ ] node -h
- [ ] node index.js -h

### Q36. When a request event is received in the HTTP module, what is the type of the first argument passed to that event, usually named req?When a request event is received in the HTTP module, what is the type of the first argument passed to that event, usually named null?

- [ ] http.IncomingMessagenull
- [ ] http.ServerRequestnull
- [ ] http.ClientRequestnull
- [ ] http.IncomingMessage
- [ ] http.ServerRequest
- [ ] http.ClientRequest
- [ ] http.ServerResponse

0 comments on commit ed26a01

Please sign in to comment.