Multiple choice java

Which methods should NOT be defined inside the home interface of a session bean? (2 correct answers)

  1. find methods

  2. multiple create() methods

  3. business methods

  4. remove() methods

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

Session beans do not have find methods - these are specific to entity beans for database queries. Session bean home interfaces contain create() methods, remove() methods (for stateful sessions), and optionally home methods (business methods at home interface level).