READ Free Dumps For Oracle- 1z0-898
Question ID 4614 | The developer has modeled student interests as a set <String>: |
Option A | A. @ElementaryCollection |
Option B | B. @ElementaryCollection (column = “student_intersets”) Set<String> interests; |
Option C | C. @ElementaryCollection @CollectionTable (column = “student_intersets”) Set<String> interests; |
Option D | D. @ElementaryCollection @CollectionTable (column = @column(name = “student_interests”)) Set <String> interests; |
Correct Answer | A |
Question ID 4615 | The embeddable class ContractInformation is used in an element collection of the Employee entity. |
Option A | A. @OneToMany Set <phone> phones; |
Option B | B. @Embeddable Address address; |
Option C | C. @ManyToOne phone phone; |
Option D | D. @ElementaryCollection <Phone> phones; |
Option E | E. @OneToOne Address address; |
Correct Answer | B,C |