Multiple choice technology programming languages

Which are valid JSP implicit variables?

  1. stream

  2. context

  3. exception

  4. application

Reveal answer Fill a bubble to check yourself
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.