Spring Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Free and Premium Guidewire InsuranceSuite-Developer Dumps Questions Answers

Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam Questions and Answers

Question 1

Succeed Insurance needs to modify an existing PolicyCenter typelist called PreferredContactMethod with new options. Following best practices, which of the following options would a developer use?

Options:

A.

Create a typelist extension called PreferredContactMethod.ttx and add the options there.

B.

Create a typelist extension called PreferredContactMethod.Ext.tti and add the options there.

C.

Create a typelist extension called PreferredContactMethod.Ext.ttx and add the options there.

D.

Modify the existing PreferredContactMethod.tti file and add the options there.

Buy Now
Question 2

A business analyst has a new requirement for an additional filter on Desktop Activities. Which two options can be used to filter a query-backed ListView? (Select two)

Options:

A.

Use a Gosu standard bean filter in the filter property of a ToolbarFilterOption

B.

Use a Gosu standard query filter in the filter property of a ToolbarFilterOption of a ToolbarFilter widget

C.

Add a ToolbarFilterOption to the ToolbarFilter widget

D.

Create an array of filtered values to populate the ListView

E.

Create a Gosu method to loop through the ListView rows adding the rows that match the criteria

Question 3

An insurer has a number of employees working remotely. Displaying the employee's name in a drop-down list must include the employee's location (e.g., John Smith - London, UK). How can a developer satisfy this requirement following best practices?

Options:

A.

Define an entity name that concatenates the name fields and work locations

B.

Create a displaykey that concatenates the name fields and work locations

C.

Create a setter property in a Name enhancement class

D.

Enable Post On Change for name fields to modify how the name is displayed

Question 4

An insurer wants to add a new typecode for an alternate address to a base

typelist EmployeeAddress that has not been extended.

Options:

A.

Following best practices, which step must a developer take to perform

this task?

B.

Create an EmployeeAddress_Ext.tti file and add a new typecode

alternate

C.

Open the EmployeeAddress.tti and add a new typecode alternate

D.

Create an EmployeeAddress.ttx file and add a new typecode

alternate_Ext

E.

Create an EmployeeAddress.tix file and add a new typecode

alternate_Ext

Question 5

This sample code uses array expansion with dot notation and has performance issues:

What best practice is recommended to resolve the performance issues?

Options:

A.

Rewrite the code to use a nested for loop

B.

Break the code into multiple queries to process each array

C.

Replace the .where clause with a .compare function

D.

Replace the dot notation syntax with ArrayLoader syntax

Question 6

Which statements describe best practices when using bundles in Gosu to save new entities/edit existing entities? (Select Two)

Options:

A.

Commit changes individually for each entity.

B.

Create a new bundle using gw.transaction.Transaction.runWithNewBundle().

C.

Explicitly call the commit() method on the bundle outside of a managed block.

D.

Add all entities to the bundle, not just those which will be edited.

E.

Obtain a bundle using gw.transaction.Transaction.getCurrent().

F.

Never call commit() within a runWithNewBundle() statement.

Question 7

An insurer ran the DBCC checks against a copy of their production database and found three errors with high counts in the categoryData update and reconciliation. What are two best practices for resolving the errors? (Select two)

Options:

A.

Analyze the errors to determine the root cause and correct the code responsible for the errors

B.

Promote the code to production and run the DBCCs again

C.

Wait to see if error counts increase; if they increase by more than 10%, fix the errors

D.

Identify any bad data and write a SQL script to correct the data; run the script immediately

E.

Search the Knowledge Base on the Guidewire Community for solutions to the problems found

Question 8

Which two are capabilities of the Guidewire Profiler? (Select two)

Options:

A.

Track where time is spent in Guidewire application code

B.

Measure network latency between the database server and application server

C.

Measure network latency between the browser and application server

D.

Provide timing information of application calls to external services

E.

Track time spent in the web browser

Question 9

The Cost entity contains the fields TotalPremium and Tax. The application needs to calculate the total cost as a sum of those two fields dynamically and wants to create a reusable solution. Which configuration is appropriate and efficient to achieve this task?

Options:

A.

Add a getter in CostEnhancement: property get TotalCost_Ext() : BigDecimal { return this.TotalPremium + this.Tax }

B.

Create an entity enhancement and add: property set TotalCost_Ext(totalCost : BigDecimal){ totalCost = this.TotalPremium + this.Tax }

C.

Create an entity extension and add a new field to store the total cost.

D.

Calculate the total cost in the value property in the PCF file.

Question 10

In the Extensions folder, there is a typelist file named BusinessType.ttx containing three typecodes: Insurer, Broker, and Agency. The business analysts have requested an additional typecode:Reinsurer. How should this typecode be added?

Options:

A.

Create a reinsurer_Ext typecode in BusinessType.ttx

B.

Create a reinsurer typecode in BusinessType.ttx

C.

Create a .ttx extension file and add a reinsurer_Ext typecode to it

D.

Create a Reinsurer_Ext typelist with a reinsurer typecode

Question 11

Given the following code example:

Code snippet

var query = gw.api.database.Query.make(Claim)

query.compare(Claim#ClaimNumber, Equals, "123-45-6798")

var claim = query.select().AtMostOneRow

According to best practices, which logic returns notes with the topic of denial and filters on the database?

Options:

A.

var notesQuery = gw.api.database.Query.make(Note); var denialNotes = notesQuery.select().where(\elt -> elt.Topic==NoteTopicType.TC_DENIAL)

B.

var denialNotes = claim.Notes.where(\elt -> elt.Topic==NoteTopicType.TC_DENIAL)

C.

var notesQuery = gw.api.database.Query.make(Note); notesQuery.compare(Note#Topic, Equals, NoteTopicType.TC_DENIAL); notesQuery.compare(Note#Claim, Equals, claim); var denialNotes = notesQuery.select()

D.

var notesQuery = gw.api.database.Query.make(Note); notesQuery.compare(Note#Topic, Equals, NoteTopicType.TC_DENIAL); var denialNotes = notesQuery.select()

Question 12

Which log message follows logging best practices in production?

Options:

A.

[Method=ClaimProcess#createClaim][Claim#PublicID=00001234] was created.

B.

The personal auto claim was created for Jane Smith with driver's license AD45678.

C.

The claim was created successfully for: Ray Newton, email: rnewton@foo.com, vehicle: white 2022 Toyota Camry.

D.

ERROR! The claim was not created because the database connection was lost.

Question 13

According to the training, which application in Guidewire Home is used to configure custom quality gates for pre-merge or pre-promotion stages within the GWCP pipeline? (Select Two)

Options:

A.

Storage Access

B.

Repository Settings

C.

CI/CD Manager

D.

Quality Gates

E.

Build Promotion

F.

Automated Builds

Question 14

The following Gosu statement is the Action part of a validation rule:

It produces the following compilation error:

Gosu compiler: Wrong number of arguments to function rejectFieldQava.lang.String, typekey.ValidationLevel, java.lang.string, typekey.ValidationLevel, java.lang.string). Expected 5, got 3

What needs to be added to or deleted from the statement to clear the error?

Options:

A.

The two nulls must be replaced with a typekey and a string

B.

A left parenthesis must be delete

C.

The word "State' must be replaced with a DisplayKey

D.

A right parenthesis must be added.

Question 15

An insurance carrier plans to launch a new product for various types of Recreational Vehicles (RVs)—such as motorhomes, boats, motorcycles, and jet skis. When collecting information to quote a policy, all RVs share some common details (like purchase date, price, year, make, and model), but each type also has its own unique properties. According to best practices, what should be done to configure the User Interface so that only the relevant RV details are shown when creating a policy quote? Select Two

Options:

A.

Create a separate page for each type of RV.

B.

Create a Modal Input Set for each RV type.

C.

Create separate inline Input Sets for each RV type and set the visibility on each Input Set

D.

Create a Detail View that includes the properties that are common to all of the RV types.

E.

Place an Input Set Ref on the Detail View and configure the RV type as the Mode.

F.

Define a Location Group to allow the user to choose the page for each RV type.

Question 16

Succeed Insurance needs to add a new getter property to the Java class generated from the Contact entity. According to best practices, what steps below would allow this to get implemented? (Select Two)

Options:

A.

Add the enhancement definition to the Contact.eti file.

B.

Add the enhancement definition to a new Contact.etx file.

C.

Create a new Gosu enhancement for the Contact entity in the gw.entity.enhancements package.

D.

Add a newget propertyto the enhancement.

E.

Create a new Gosu enhancement for the Contact entity in thesi.cc.entity.enhancementspackage.

F.

Add a new get function to the enhancement.

Question 17

A ListView shows contacts related to a Claim. When a user clicks the contact name in a text cell, the UI should open a Worksheet showing details of that contact. The elementName property in the row iterator is currentContact. Which is the correct approach?

Options:

A.

Set the Action property on the atomic widget to include ContactWS(currentContact)

B.

Set the actionAvailable property on the atomic widget to ContactWS.push(currentContact)

C.

Set the Action property on the atomic widget to ContactWS.goInWorksheet(currentContact)

D.

Set the Action property on the atomic widget to ContactWS.goInWorkspace(currentContact)

Question 18

Which statement is true about the Project Release branch for an implementation using Git?

Options:

A.

It stores the current production code and is updated whenever the production system is updated

B.

It is used by the implementation team to develop code for a specific release

C.

It is used by the implementation team to stabilize the code for a specific release

D.

It contains product releases from Guidewire

Question 19

The company has requested to group 3 new Pages, within Claim Details, in the left navigation. Which configuration best practice should be used to implement this requirement?

Options:

A.

Implement each new Page as a LocationRef with its own Hyperlink widget.

B.

Configure the new Page navigations within the TabBar definition.

C.

Define the Page links in a reusable InputSet file to group the new pages.

D.

Use a MenuItemIterator widget to create the heading and organize the Page links.

E.

Configure a new LocationGroup to group the new pages.

Question 20

There is a requirement to add fields specific to Auto Rental Agencies. The additional fields required are; Auto Renta License, Offers Roadside Assistance, and Offers Insurance. Other fields will come from the existing ABCompanyVendor entity.

For reference, the diagram below shows the ABCompany subtype of the ABContact entity:

How should this requirement be configured following best practices?

Options:

A.

Create ABAutoRentalAgency.Ext as a subtype of A B Company Vendor and add the three fields to the subtype

B.

Create ABAutoRentalAgency.Ext as a subtype of ABCompany and add the three fields to the subtype

C.

Create a custom entity ABAutoRentalAgency_Ext and add the three fields to this entity

D.

Create three new fields to extend the existing ABCompany Vendor subtype

Question 21

Which statement accurately defines automated Guidewire inspections?

Options:

A.

Developers need to toggle on all of the inspections they want to execute against their code.

B.

Inspections cannot be modified by developers but will be used as delivered in Studio.

C.

Inspections enable static analysis to enforce standards and detect Gosu anti-patterns.

D.

All Guidewire inspections are incorporated into a plugin that can be installed in Guidewire Studio.

Question 22

A customer needs the ability to categorize claims based on business needs. Which actions below follow best practices? (Choose two)

Options:

A.

Define ClaimCategory_Ext as an extension of an existing claim Typelist.

B.

Add a ClaimCategory_Ext Typekey to the Claim entity

C.

Create a .ttx file for ClaimCategory_Ext in the Extensions\Typelist folder

D.

Add a 'foreignkey' to the ClaimCategory_Ext typelist that references the Claim entity

E.

Name the Typelist ClaimCategory without an _Ext suffix.

F.

Create a .tti file for ClaimCategory_Ext in the Extensions\Typelist folder

Question 23

You need to retrieve Claim entity instances created after a specific date. Which methods ensure that the filtering is performed in the database for optimal performance?

Options:

A.

Retrieve all claims and filter the collection in Gosu memory using the where ( ) method.

B.

Retrieve claims using a query and then filter the results collection using the filterwhere method.

C.

Use the filter () .where () methods on the query object to filter the records by their creation date.

D.

Use the compare method on the query object to filter claim records by their creation date.

E.

Use the where method on the query object to filter claim records by their creation date.