Multiple choice technology programming languages

Following methods can be overridden in the JSP page

  1. jspDestroy()

  2. jspInit()==

  3. _jspService()

  4. getParameter()

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

In JSP, jspInit() and jspDestroy() can be overridden by the page author to initialize or clean up resources. However, _jspService() is generated by the container and must never be overridden. The option for jspInit() has trailing equal signs, making jspDestroy() the cleanest correct choice.