Which are valid JSP implicit variables?
-
stream
-
context
-
exception
-
application
C,D
Correct answer
Explanation
JSP implicit objects include exception (available in error pages) and application (representing ServletContext). 'stream' is not a valid implicit object, and 'context' should be 'application' - the actual implicit object name.