Multiple choice technology web technology

The request from the web browser is handled by which of the following component?

  1. Model only

  2. View and Controller

  3. Controller only

  4. Medel and Controller

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In the MVC architecture, the Controller is responsible for handling incoming HTTP requests from web browsers. It processes the request, interacts with the Model for data operations, and selects the appropriate View for rendering the response. The Model and View don't directly handle browser requests.