Multiple choice technology architecture

What is the role of JSP in MVC Model?

  1. View

  2. Model

  3. Controller

  4. None

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

In the MVC (Model-View-Controller) architecture, JSP serves as the View component - it handles presentation and display. The Model represents data and business logic. The Controller (often a Servlet) handles request processing and coordinates between Model and View.