Multiple choice technology programming languages

what is the default value in hibernate ?

  1. a) lazy=false;

  2. b) lazy=true;

  3. c) lazy=yes;

  4. d) lazy=no;

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

In Hibernate, lazy loading is enabled by default (lazy=true) for associations and collections to optimize performance by avoiding loading related entities until they are explicitly accessed.