Technical round questions: Explain hosting and how JavaScript works in the browser. What is the event loop? Answers: Hosting: The process of setting up an environment to execute code. JavaScript runs in the browser, where the browser provides the runtime environment. Event loop: JavaScript's mechanism for handling asynchronous operations by continuously checking the callback queue and executing pending events in a single-threaded manner.