Multiple choice java

Following method(s) cannot be overridden in the JSP page.

  1. _jspService()

  2. jspInit()

  3. jspDestroy()

  4. getParameter()

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

In the JSP lifecycle, the _jspService() method is generated by the container and corresponds to the body of the JSP page. The JSP specification forbids the user from overriding this method, whereas jspInit() and jspDestroy() can be overridden.