🎴 Flashcard Mode
Java and SAS Programming Fundamentals
Card1 / 20
Mastered0
Review0
QuestionClick to flip
Which implicit object can access the attributes from the ServletContext?
AnswerClick to flip back
A
Application
💡 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.