Multiple Choice
Which of the following statements related to JPA is false?
A) The Java Persistence API (JPA) maps Java classes to relational database tables and objects of those classes to rows in the tables. This is known as object-relational mapping.
B) You can use the NetBeans IDE's object-relational mapping tools to select a database and autogenerate classes that use JPA to interact with that database. Your programs can then use those classes to query the database, insert new records, update existing records and delete records.
C) Unlike JDBC, you will have to create mappings between your Java code and database tables, and you'll be able to perform complex database manipulations directly in Java.
D) JPA can be used with any database management system that supports JDBC.
Correct Answer:

Verified
Correct Answer:
Verified
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
Q13: With JPA, as part of a persistence
Q14: The JPA annotation @Basic specifies whether the
Q15: Which f the following JPA-related statements is
Q16: An object that implements the EntityManager _