Multiple choice technology web technology

Select the implicit jsp objects from the following

  1. exception

  2. error

  3. out

  4. page

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

JSP implicit objects are automatically available in JSP pages. 'exception' is available only in error pages. 'out' is the JspWriter object. 'page' refers to the current servlet instance (this). 'error' is not a valid JSP implicit object.