The Struts 1 ActionServlet is based on the Design Pattern
-
Intercepting Filter
-
Front Controller
-
Single Controller
-
None of the above
B
Correct answer
Explanation
The Struts 1 ActionServlet implements the Front Controller design pattern, where a single servlet receives all requests and delegates to appropriate handlers (Actions). Intercepting Filter is a different pattern (J2EE filters), Single Controller is not a standard pattern name, and Front Controller is the correct answer.