In a scenario with a mix of synchronous and asynchronous code, how does the call stack and event loop manage the execution?

  • The call stack executes synchronous code first.
  • The event loop processes asynchronous code first.
  • Both synchronous and asynchronous code are executed randomly.
  • The call stack and event loop have no interaction.
The call stack prioritizes synchronous code, while the event loop manages the execution of asynchronous code by pushing it to the callback queue and executing it when the call stack is empty.
Add your answer
Loading...

Leave a comment

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