InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is not ID generating strategy using @GeneratedValue annotation?(a) Auto(b) Manual(c) Identity(d) Sequence |
|
Answer» The correct choice is (b) Manual For explanation: Auto, Table, Identity and Sequence are the ID generating strategies using @GeneratedValue annotation. |
|