Multiple choice technology architecture

Which are implicit objects in a JSP?

  1. only request, response

  2. only request, response & application

  3. request, response, session & application

  4. none of the above

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

JSP provides several implicit objects that are automatically available: request (HttpServletRequest), response (HttpServletResponse), session (HttpSession), application (ServletContext), out (JspWriter), pageContext, page, config, and exception. Option C correctly identifies the core implicit objects for request handling and session/application management.