Multiple choice technology

Which are implicit objects in a JSP?

  1. only request, response

  2. only request, response & application

  3. request, response, session & application

  4. none

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

JSP provides several implicit objects automatically available without declaration: request (HttpServletRequest), response (HttpServletResponse), session (HttpSession), and application (ServletContext). These objects handle client requests, server responses, user session management, and application-wide operations respectively. Option C correctly lists four key implicit objects.