Multiple choice technology

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 MVC architecture, JSP serves as the View layer, responsible for presenting data to users. JSP's strength is templating and rendering HTML with dynamic content. Servlets typically act as Controllers (handling request processing), and JavaBeans/POJOs serve as Models (data and business logic).