Which implicit object can access the attributes from the ServletContext?
-
Server
-
Request
-
Application
-
Context
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.