Multiple choice technology programming languages

What does the attribute "auto-import" in root element signify?

  1. imports name of database schema

  2. permits to access all properties automatically

  3. determines wether unqualified names can be used in query language

  4. imports name of database catalog

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

The auto-import attribute in Hibernate's `` element determines whether unqualified class names can be used in HQL. By default, it is true, allowing developers to query entities without their full package path. The distractors incorrectly refer to database schemas, catalogs, or property access permissions.