Which of the implicit objects won’t be available ?
-
session, request
-
exception, request
-
exception, config
-
session, exception
D
Correct answer
Explanation
In JSP, the session implicit object is unavailable if the page directive disables sessions (session="false"). The exception implicit object is only available on error pages (isErrorPage="true"). Thus, under standard configurations, both may be unavailable depending on the directives configured.