When the Event Loop encounters an asynchronous task, it offloads it to the ________ and continues to execute subsequent tasks.

  • Callback Queue
  • Worker Thread
  • Event Emitter
  • Main Memory
When the Event Loop encounters an asynchronous task, it offloads it to the Callback Queue and continues to execute subsequent tasks. These tasks are then processed from the Callback Queue when the main thread is available.
Add your answer
Loading...

Leave a comment

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