Node.js uses ________ to achieve Non-Blocking I/O operations, allowing it to handle many connections simultaneously.

  • Callbacks
  • Promises
  • Threads
  • Synchronous
Node.js uses Callbacks to achieve Non-Blocking I/O operations. When a task is completed, a callback function is executed, allowing Node.js to handle many connections simultaneously without blocking the execution of other tasks.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *