Multiple choice technology programming languages

Org.apache.struts.action.Action class extends?

  1. Object class

  2. Action Servlet

  3. Http Servlet

  4. None Of the above

Reveal answer Fill a bubble to check yourself
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.