In Node.js, the Event Loop operates on a single ________, which makes it suitable for I/O-bound tasks.

  • Thread
  • Core
  • Process
  • Module
In Node.js, the Event Loop operates on a single Core, not a thread or process. This single-threaded event loop design is one of the key features of Node.js, making it suitable for I/O-bound tasks as it can efficiently handle asynchronous operations without the overhead of multiple threads or processes.
Add your answer
Loading...

Leave a comment

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