Multiple choice technology programming languages

Which implicit object can access the attributes from the ServletContext?

  1. Server

  2. Request

  3. Application

  4. Context

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

The 'application' implicit object in JSP represents the ServletContext and provides access to application-scope attributes. ServletContext is the object that stores application-wide data and attributes accessible across all sessions. 'request' is for request scope, 'server' is not a standard JSP implicit object, and 'context' is not used for this purpose in JSP.