CSE MCQs :: Node JS
- Which of following are a valid form of route path?
- Which of the following statements holds good with respect to Node?
- In Nodejs what is use of underscore variable in REPL session?
- Which statement is valid in using a Node module fs in a Node based application?
- Child processes always have three streams child.stdin, child.stdout, and child.stderr which may be shared with the stdio streams of the parent process.
A.
Node being a single thread, and uses async function calls to maintain the concurrency
|
B.
Every API of Node js are asynchronous
|
C.
Node thread keeps an event loop and whenever any task get completed, it fires the corresponding event which signals the event listener function to get executed
|
D.
All of these
|