Podcast
Questions and Answers
Which of the following is NOT a core module in Node.js?
Which of the following is NOT a core module in Node.js?
- http
- path
- serve (correct)
- fs
What does the 'process' object in Node.js represent?
What does the 'process' object in Node.js represent?
- The HTTP process handling
- The file system process
- The current Node.js process (correct)
- The server process
Which of the following is used to handle asynchronous operations in Node.js?
Which of the following is used to handle asynchronous operations in Node.js?
- setTimeout()
- setImmediate() (correct)
- clearImmediate()
- setInterval()