Multiple choice technology

What JSP is basically used today

  1. To make controller

  2. To make GUI

  3. In writing business logic

  4. Deprecated

  5. none

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

JSP is primarily used for creating the view/presentation layer (GUI) in web applications. It generates HTML that is sent to the browser. Controllers are better implemented as Servlets, and business logic should be in separate Java classes.