Multiple choice technology programming languages

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

  1. jspDestroy()

  2. jspInit()

  3. _jspService()

  4. getParameter()

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

The _jspService() method is generated automatically by the JSP container and contains the servlet's code. It cannot be overridden in a JSP page, whereas jspInit() and jspDestroy() can be defined by the developer.