Multiple choice technology programming languages

core class of the Struts Framework

  1. ActionServlet

  2. ActionJsp

  3. ActionClass

  4. Action

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

ActionServlet is the core controller class in Struts Framework - it serves as the front controller that receives all HTTP requests and routes them to appropriate Action classes. ActionServlet is responsible for initializing the framework, populating configuration from struts-config.xml, and managing the request processing lifecycle. Action (Option D) is a class developers extend, not the core controller. Options B and C don't exist in Struts.