Multiple choice technology web technology

What are the core classes of the Struts 1.3 Framework?

  1. Action

  2. ActionServlet

  3. HttpServlet

  4. Servlet

  5. None of the above

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

Action classes contain the business logic and handle request processing in Struts. ActionServlet is the main controller servlet that receives all requests and routes them to appropriate Action classes. HttpServlet is the base servlet class but not specific to Struts, and Servlet is too generic.