Multiple choice technology embedded technologies

among the following, what are the types of entity beans?

  1. JMS

  2. JAXM

  3. BMP

  4. CMP

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

Entity beans in EJB 2.x support two persistence mechanisms: BMP (Bean-Managed Persistence) where the developer writes all database code, and CMP (Container-Managed Persistence) where the container handles persistence automatically. Options C and D correctly identify these. JMS and JAXM (A and B) are messaging technologies unrelated to entity bean persistence.

AI explanation

Entity beans come in two persistence-management flavors: BMP (Bean-Managed Persistence), where the developer writes the persistence code, and CMP (Container-Managed Persistence), where the EJB container handles it automatically. JMS and JAXM are messaging technologies related to message-driven beans, not entity bean types.