Multiple choice technology web technology

The Struts 1 ActionServlet is based on the Design Pattern

  1. Intercepting Filter

  2. Front Controller

  3. Single Controller

  4. None of the above

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