Multiple choice technology packaged enterprise solutions

PsFrameworkServlet class overrides?

  1. doGet()

  2. doPost()

  3. a & b

  4. processRequest()

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

Framework servlets typically handle multiple HTTP methods. PsFrameworkServlet overrides both doGet() and doPost() methods to provide consistent request processing and routing across different HTTP request types within the framework's architecture. Option D (processRequest) is likely an internal method, not the standard HttpServlet override.