Online Access Free 1Z0-898 Exam Questions
| Exam Code: | 1Z0-898 |
| Exam Name: | Java EE 6 Java Persistence API Developer Certified Expert Exam |
| Certification Provider: | Oracle |
| Free Question Number: | 63 |
| Posted: | Jul 26, 2026 |
An application that uses pessimistic locking calls an updateData method that results in a LockTimeoutException being thrown. What three statements are correct? (Choose three)
A developer is writing an application with three java Persistence API entities: order, customer, and Address. There is a many-to-one relationship between order and customer, and a one to-many relationship between customer and Address.
Which two Criteria queries will return the orders of all customers who have an address whose value specified by the String parameter postalcode? (Choose two)
Which one of the following queries selects the customer whose order has the highest total price?
The developer has modeled student interests as a set <String>:
@Entity public class Student {
@Id int student Id;
string name;
@ElementaryCollection
Set <String> Interests;
. . .
}
The developer wants the values of this set to be stored using a column named student_intersets.
Select the item below that accomplishes this task: