What are the core classes of the Struts 1.3 Framework?
-
Action
-
ActionServlet
-
HttpServlet
-
Servlet
-
None of the above
A,B
Correct answer
Explanation
In the Struts 1.3 framework, Action is a core class that encapsulates business logic and request handling, while ActionServlet is the central controller servlet that receives all requests and delegates them to appropriate Action classes. HttpServlet is a generic Java class that ActionServlet extends, and Servlet is an interface - these are not Struts-specific core classes.