Multiple choice technology programming languages

Which of the below is not an implicit object of JSP ?

  1. request

  2. session

  3. context

  4. page

  5. error

  6. exception

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

JSP implicit objects are automatically available in JSP pages without declaration. The standard implicit objects are: request, response, pageContext, session, application (not 'context'), out, config, page, and exception (only in error pages). 'context' is not a valid implicit object name - the correct names are 'application' for servlet context and 'pageContext' for page context.