Multiple choice technology web technology Which statement is correct ? A Session will not obtain a JDBC Connection (or a Datasource) unless it is needed A Session will obtain a JDBC Connection (or a Datasource) on object create A Session has no relation with JDBC Connection (or a Datasource) none of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation Hibernate uses lazy connection acquisition - a Session only obtains a JDBC Connection when actually needed (e.g., executing a query). It doesn't fetch connections on Session creation or maintain a constant connection.