Multiple choice technology packaged enterprise solutions what is the default value in hibernate ? lazy=false; lazy=true; lazy=yes; 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.