Multiple Choice
Which of the following statements about JPA database transaction processing is false?
A) Transaction processing enables a program that interacts with a database to treat a set of operations as a single operation. Such an operation also is known as an atomic operation or a transaction.
B) At the end of a transaction, a decision can be made either to commit the transaction or roll back the transaction.
C) Committing a transaction finalizes the database operation(s) ; all insertions, updates and deletions performed as part of the transaction cannot be reversed.
D) Rolling back the transaction leaves the database in its state prior to the database operation. This is useful when a portion of a transaction fails to complete properly.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: An object of type _ is used
Q2: For entity classes in JPA, an @NamedQueries
Q3: When you define a query in your
Q5: Which of the following statements is false?<br>A)
Q6: Which of the following JPA-related statements in
Q7: When you used JPA in this chapter,
Q8: Which of the following JPA-related statements is
Q9: The first argument to EntityManager's XE "EntityManager
Q10: In JPA transaction processing, if the operations
Q11: In JPA, when you compile the entity