Multiple choice technology packaged enterprise solutions

what is the default value in hibernate ?

  1. lazy=false;

  2. lazy=true;

  3. lazy=yes;

  4. lazy=no;

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

In Hibernate, the default lazy loading behavior is 'lazy=true' for collections and associations. This means related objects are loaded only when actually accessed, not eagerly. Options A, C (lazy=yes is invalid syntax), and D are incorrect.