Org.apache.struts.action.Action class extends?
-
Object class
-
Action Servlet
-
Http Servlet
-
None Of the above
A
Correct answer
Explanation
The org.apache.struts.action.Action class in Struts extends java.lang.Object directly, not ActionServlet or HttpServlet. While Action classes work with HTTP requests (via execute method taking HttpServletRequest), they don't inherit from HttpServlet. ActionServlet is the front controller that handles all requests and delegates to Action classes - they are separate classes in the hierarchy.