InterviewSolution
Saved Bookmarks
| 1. |
Why does Node not block while waiting for operations to complete?(a) Static(b) Asynchronous(c) Synchronous(d) Recursive |
|
Answer» Right choice is (b) Asynchronous Easy explanation: Node executes the function the in one go without any waiting or blocking. Because the Node’s functions and methods are asynchronous, they do not block while waiting for operations to complete. |
|