Following method(s) cannot be overridden in the JSP page.
-
_jspService()
-
jspInit()
-
jspDestroy()
-
getParameter()
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.