Question 6 of 63
A developer has created an application managed entity manager.
Which statement is correct?
    Correct Answer: A

Question 7 of 63
Given:
@PersistenceContext EntityManager em;
public boolean test(Order o) {
boolean b = false;
o = em.merge(o);
em.remove(o);
o = em.merge(o);
b = em.contains(o);
return b;
}
Which statement is correct?
    Correct Answer: A

Question 8 of 63
If an application uses an extended persistence context, which of the following is true?
    Correct Answer: C

Question 9 of 63
An application uses an application-managed entity manager. Which of the following is NOT true?
    Correct Answer: D

Question 10 of 63
An application that uses container-managed transaction demarcation creates a query within an active transaction and receives a QueryTimeoutException. Which of those scenarios describes what happens to the active transaction?
    Correct Answer: D