InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a state of object in Hibernate?(a) Attached()(b) Detached()(c) Persistent()(d) Transient()I have been asked this question in exam.Origin of the question is Hibernate topic in portion Autoboxing & Miscellaneous of Java |
|
Answer» CORRECT option is (a) ATTACHED() The best I can EXPLAIN: Attached() is not a state of object in Hibernate. Detached(), PERSISTENT() and Transient() are the only states in Hibernate. |
|