Guidewire InsuranceSuite-Developer - Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam
Total 150 questions
An insurer imports information used to calculate replacement values for property claims on a monthly basis. The information is summarized in a non-editable list. A business analyst has presented a new requirement to support editing individual records when new information is received between scheduled imports. What location type will satisfy this requirement?
Given the following query:
uses gw.api.database.Query
var query = Query.make(Claim)
query.compare(Claim#ClaimNumber, Equals, " 123-45-6789 " )
var claim = query.select().AtMostOneRow
Which follows the best practice to find the urgent open activities of the claim, considering the memory usage and bundle size?
Which statements describe best practices when using bundles in Gosu to save new entities/edit existing entities? (Select Two)
Succeed Insurance would like to count the number of High Priority Activities that are related to a Job. Which approach follows best practices to meet this requirement?
Which scenario follows best practices for user interface field-level validation?
Given the following code sample:
var newBundle = gw.transaction.Transaction.newBundle()
var targetCo = gw.api.database.Query.make(ABCompany)
targetCo.compare(ABCompany#Name, Equals, " Acme Brick Co. " )
var company = targetCo.select().AtMostOneRow
company.Notes = " TBD "
Following best practices, what two items should be changed to create a bundle and commit this data change to the database? (Select two)
As a developer you are creating a new Gosu class for Succeed Insurance. According to the course material, which of the following statements define how you should implement logging in your new class? (Choose Two)
Which logging statement follows best practice?
A developer is creating an entity for home inspections that contains a field for the inspection date. Which configuration of the file name and the field name fulfills the requirement and follows best practices?
Succeed Insurance is developing multiple policy lines of business (LOB). The LOBs they are implementing are Homeowners (HO), Commercial Auto (CA), and Personal Auto (PA). They want to show key data elements of these LOBs on the exposure screen in ClaimCenter. To support this, you will need to modify the ExposureDetailDV container to support the different LOBs. Following best practices, which of the following implementations should be used?
