Multiple choice technology web technology Which one of the following will commit session? session..commit() session.getCommitTransaction() session.getTransaction().commit() session.getTransaction().save() Reveal answer Fill a bubble to check yourself C Correct answer Explanation To commit a transaction in Hibernate, you must first retrieve the active transaction from the session and then call its commit method using session.getTransaction().commit(). The other options are syntactically incorrect or do not exist.