Pre-Summer Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: force70

Guidewire Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam InsuranceSuite-Developer Question # 36 Topic 4 Discussion

Guidewire Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam InsuranceSuite-Developer Question # 36 Topic 4 Discussion

InsuranceSuite-Developer Exam Topic 4 Question 36 Discussion:
Question #: 36
Topic #: 4

Succeed Insurance would like a list of all Notes related to all Policies for an Account. Which approach follows best practices for retrieving this data more efficiently?


A.

Code snippetvar policyNotes = Query.make(Note).compare(Note#Policy, Relop.Equals, policy).compare(Note#Account, Relop.Equals, account).select()


B.

Code snippetvar policyNotes = account.Policies*.Notes.toList()


C.

Code snippetvar policyNotes : ArrayList < Note > for(policy in account.Policies) {for (note in policy.Notes) {policyNotes.add(note)}}


D.

Code snippetvar policyNotes = account.Policies*.Notes*.DisplayName


Get Premium InsuranceSuite-Developer Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.