Multiple choice technology programming languages

Which of the following is not a Session method?

  1. Session.saveorupdate()

  2. Session.remove()

  3. Session.load()

  4. Session.save()

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

Standard Hibernate Session methods include save(), saveOrUpdate(), load(), get(), delete(), update(), and others. There is no remove() method in the Session interface - deletion is done via delete().