Multiple choice technology programming languages

Correct seuence of ActionForm execution?

  1. setter,reset

  2. Initialization,setter,reset

  3. setter,reset,Initialization

  4. reset,Initialization,setter

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

ActionForm follows this lifecycle: the form bean is initialized/created, setter methods populate it with request parameters, and reset() is called. Option B correctly sequences these phases.