Multiple choice technology programming languages

How many create methods can you declare in the entity bean home interface?

  1. One or more

  2. Zero or more

  3. Exactly one

  4. Zero

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

Entity bean home interfaces can have zero or more create methods. Unlike session beans which must have at least one create method, entity beans are not required to have any create methods - they can rely exclusively on finder methods to locate existing entities. When create methods are defined, there's no upper limit on how many can exist.