Multiple choice technology programming languages

What JSP lifecycle methods can I override?

  1. jspInit()

  2. jspDestroy()

  3. _jspService()

  4. Both a & b

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

JSP lifecycle allows overriding jspInit() for initialization and jspDestroy() for cleanup, but _jspService() is container-generated and cannot be overridden.