Multiple choice technology programming languages

What advantage does a entity-bean have over a session bean?

  1. Entity-bean data survives crashes.

  2. An entity-bean represents non-persistent data.

  3. It creates its own JAR file during deployment

  4. You get authentication code without having to write any.

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

Entity beans represent persistent business data that survives system crashes because they are backed by a database. Session beans, in contrast, are transient and only exist for the duration of a client session, representing business processes rather than persistent state.