Multiple choice technology programming languages

Which method is necessary for Action class?

  1. valuator()

  2. reset()

  3. findForward()

  4. execute()

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

The execute() method is the core method that every Action class must implement. It handles the request processing logic and returns an ActionForward that determines the view to display. Other methods like reset() belong to ActionForm, and findForward() is called ON an ActionMapping, not implemented BY Action.