This class is a thread-safe global object, instantiated once in Hibernate
-
SessionFactory
-
Session
-
Transaction
-
None of the Above.
A
Correct answer
Explanation
SessionFactory is a thread-safe, immutable object that is created once during application initialization and shared across all threads. It is heavyweight and maintains the configuration, mappings, and connection pool. Session objects are not thread-safe and should be created per thread/request.