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

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

Questions 4

A developer needs to create a new entity for renters that contains a field for the employment status. EmploymentStatusType is an existing typelist. How can the entity and new field be created to fulfill the requirement and follow best practices?

Options:

A.

Add Renter.etx under Metadata -> Entity with a column EmploymentStatus.Ext

B.

Add Renter.etl under Extensions -> Entity with a column EmploymentStatus.Ext

C.

Create EmploymentStatusType.ttx under Extensions -> Typelist with a type code Renter

D.

Create Renter_Ext.eti under Extensions -> Entity with a typekey EmploymentStatus

Buy Now
Questions 5

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.

Buy Now
Questions 6

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

Buy Now
Questions 7

An insurer specializing in high-risk policies requires a new Account to provide at least three references. A Reference entity is created. What is the best practice for adding and displaying References on the Contact Summary page in TrainingApp?

Options:

A.

Create a Reference detail view with fields for three References and add it to the Contact Summary page

B.

Create a Contacts pop up and add a button that opens it to the Contact Summary page

C.

Create a Reference list view and add it to the Contact Summary page

D.

Create an input set that displays References and add it to the Contact Summary page

Buy Now
Questions 8

ContactManager provides an inline reference to an editable list view on the Contact Basics screen that supports adding and editing of banking information for contacts. The screenshot below shows this list view in Studio. There is an error within the red outline.

Which configuration changes are necessary to resolve the error? (Select two)

Options:

A.

Add a toolbar widget to the list view input

B.

Add and configure Iterator buttons

C.

Replace the list view input with a panel ref

D.

Replace the list view PCF with an inline list view

E.

Add edit permissions to the row iterator

Buy Now
Questions 9

A developer needs to run multiple GUnit test classes so that they can be run at the same time. Which two statements are true about the included tests? (Select two)

Options:

A.

They must be based on the same GUnit base class

B.

They must be in the same GUnit class

C.

They must set TestResultsDir property

D.

They must use the assertTrue() function

E.

They must have the same @Suite annotation

Buy Now
Questions 10

Given the image:

Which container type must be added between Card and Input Column?

Options:

A.

Detail View PCF File

B.

Detail View

C.

List View

D.

Input Set

Buy Now
Questions 11

Which two types of InsuranceSuite projects does the Cloud Assurance process apply to? (Select two)

Options:

A.

Upgrades to Guidewire Cloud Platform

B.

New Guidewire Cloud Platform implementations

C.

New self-managed implementations

D.

Upgrades on self-managed implementations

E.

New features added to existing implementations

Buy Now
Questions 12

An insurer doing business globally wants to use a validation expression to verify that a contact's postal code is a real postal code for the country specified in the contact's address.

A developer has created a method with the signature validatePostalCode(anAddress: Address): boolean, which returns true if and only if the postal code is valid.

What would be the correct validation expression?

Options:

A.

validatePostalCode(anAddress) == true

B.

validatePoslalCode(anAddress) == null

C.

validatePostalCode(anAddress)

D.

validatePostalCode(anAddress) ? null: false

Buy Now
Questions 13

A developer is creating an enhancement class for the entity AuditMethod_Ext in PolicyCenter for an insurer, Succeed Insurance. Which package structure of the gosu class and function name follows best practice?

Options:

A.

si.pc.enhancements.entity, determineAuditType()

B.

si.pc.enhancements.entity, determineAuditType_Ext()

C.

gw.job.audit, determineAuditType()

D.

gw.entity.enhancement, determineAuditType_Ext()

Buy Now
Questions 14

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

Buy Now
Questions 15

Succeed Insurance has a page in PolicyCenter with a large fleet of vehicles. They want multiple filters to show only a subset of vehicles. Which methods follow best practices?

Options:

A.

Apply the filter using the Row Iterator configuration in the PCF.

B.

Implement filtering logic in the list view PCF using visible properties.

C.

Add multiple Filter Options using Gosu Standard Query Filters.

D.

Add a ListView Filter widget to the ListView.

E.

Retrieve all policies and filter them in the application server layer.

F.

Use Gosu's where method on the retrieved collection in memory.

Buy Now
Questions 16

A developer has designed a detail view with an email address input. What is the best practice for ensuring that only a properly formatted email address can be entered?

Options:

A.

Create an email address class with a validation method

B.

Use database validation for the email address

C.

Usefield-level validationfor the email address

D.

Create a validation rule for email addresses

Buy Now
Questions 17

Succeed Insurance needs to implement a number of Gosu functions. Select the options that follow best practices. Select Two

Options:

A.

When writing UI related functions, that code should be placed in UI helper classes. Following this practice ensures easier maintainability by developers.

B.

When implementing an interface such as Rental Location the class should be called RentalLocationImpl.

C.

Entities should be extended to support UI operations. Following this practice ensures easier maintainability by developers.

D.

Add new interfaces to a customer package space such as si. in this case. In addition, do not append _Ext on the interface name in this package.

E.

When writing UI related functions, that code should be placed in the code tab of a PCF file to improve performance and maintainability.

F.

Functions defined in a Gosu class should be named in upper camel case such as ModifyAddressInformation

G.

Use underscores to separate words in function names for better readability.

Buy Now
Questions 18

A developer wrote the following query to create a list of activities sorted by activity pattern, and then returns the first activity for a failed policy bind:

This query uses the sortBy() and firstwhere() methods which are anti-patterns. Where should the developer handle the filtering and sorting to follow best practices?

Options:

A.

On the application server

B.

In the application cache

C.

In the database

D.

In a block statement

Buy Now
Questions 19

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

Buy Now
Questions 20

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

Buy Now
Questions 21

The Officials list view in ClaimCenter displays information about an official called to the scene of a loss (for example, police, fire department, ambulance). The base product captures and displays only three fields for officials. An insurer has added additional fields but still only displays three fields. The insurer has requested a way to edit a single record in the list view to view and edit all of the officials fields. Which location type can be used to satisfy this requirement?

Options:

A.

Forward

B.

Page

C.

Popup

D.

Location group

Buy Now
Questions 22

An insurer has identified a new requirement for company vendor contacts in ContactManager. If the Preferred Vendor9 field is set to Yes, display the new BBS Rating (Better Business Bureau) field.

Which two configuration changes will satisfy this requirement? (Select two)

Options:

A.

Call a gosu expression from the PostOnChange onChange properly to set the value of the BBB Rating field

B.

Enable the Post On Change property for the Preferred Vendor? field

C.

Set the visible property of the BBB Rating field to true when the Preferred Vendor? field is Yes

D.

Enable the Post On Change property for the 8BB Rating field

E.

Set the editable property of the BBB Rating field to true when the Preferred Vendor' field is No

Buy Now
Questions 23

A developer has completed a configuration change in an InsuranceSuite application on their local environment. According to the development lifecycle described in the training, which initial steps are required to move this change towards testing and deployment? Select Two

Options:

A.

Deploy the application directly to a pre-production planet.

B.

Schedule automated builds in TeamCity

C.

Push the code changes to the remote source code repository in Bitbucket.

D.

Trigger a TeamCity build via Guidewire Home if it has not already begun automatically.

E.

Create a new physical star system in Guidewire Home.

F.

Configure pre-merge quality gates in Bitbucket.

Buy Now
Exam Name: Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam
Last Update: Feb 21, 2026
Questions: 77
InsuranceSuite-Developer pdf

InsuranceSuite-Developer PDF

$25.5  $84.99
InsuranceSuite-Developer Engine

InsuranceSuite-Developer Testing Engine

$30  $99.99
InsuranceSuite-Developer PDF + Engine

InsuranceSuite-Developer PDF + Testing Engine

$40.5  $134.99