Multiple choice technology programming languages

Is ActionForm serializable ?

  1. true

  2. false

  3. both 1 and 2

  4. None of the above

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

ActionForm implements the Serializable interface in Struts. This is required because ActionForm instances may be stored in HTTP session or application scope, which need to be serializable for session replication in clustered environments and for proper session management. The Serializable marker interface enables this storage capability.