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

Guidewire InsuranceSuite-Developer - Associate Certification - InsuranceSuite Developer - Mammoth Proctored Exam

When creating an entity enhancement in Gosu, which of the following practices are recommended? (Choose 2)

A.

Use the suffix _Ext for new properties added to base application entities.

B.

Use a noun for most properties, but use an adjective for boolean properties.

C.

Getters do not need to be null safe.

D.

Use the suffix _Ext for new methods added to custom entities.

E.

An enhancement to a subtype/subclass will need to be added to each child subtype/subclass as enhancements are not automatically inherited.

F.

Ensure that the enhancement file is placed in the same package as the enhanced type.

Which GUnit base class is used for tests that involve Gosu queries in PolicyCenter?

A.

PCUnitTestClassBase

B.

SuiteDBTestClassBase

C.

PCServerTestClassBase

D.

GUnitTestClassBase

Given the following screen showing a DetailView in Guidewire Studio highlighted in red:

Which single item added directly to the detail view will correct the error shown, with no further errors?

A.

Add a row iterator to the detail view

B.

Add a toolbar to the detail view

C.

Add a list view to the detail view

D.

Add an input column to the detail view

A user needs to select a single item from a non-editable list and modify its properties. Which UI pattern is best practice to facilitate editing just the selected item?

A.

Opening a Popup containing an editable detail view for the selected item.

B.

Using an inline Screen within the list view row.

C.

Configuring an InputSet within the list row.

D.

Making the entire list view editable.

E.

Navigating to a separate page for editing.

A business analyst provided a requirement to create a list of Payment Types accepted by vendors. The list will include the values Cash, Credit Card, Debit Card, Check, and EFT. It will be linked to Company Vendors. Following best practices for creating a new typelist, how can this requirement be configured in the data model?

A.

PaymentType_Ext.ttx in the Extensions - > Typelist folder and add typecodes with the _Ext suffix to the typelist for the five payment types

B.

PaymentType.tix in the Metadata - > Typelist folder and add typecodes with the _Ext suffix to the typelist for the five payment types

C.

PaymentType_Ext.tti in the Extensions - > Typelist folder and add typecodes for the five payment types to the typelist

D.

PaymentType.tti in the Metadata - > Typelist folder and add typecodes to the typelist for the five payment types

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

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.

A Guidewire developer is assigned to create a new List View (LV). Which two objects are required for the list view to appear on the Studio canvas with no errors or red showing? (Select two)

A.

A row iterator

B.

A text input

C.

Add and Delete buttons

D.

A text cell

E.

A row

Given the method below:

public function FriendlyGreeting (name: String): String {

if (name == null or name.length == 0) throw " Requires a non-empty string! "

return " Hello, " + name + " ! "

}

What best practice is violated in the code?

A.

" return " cannot return more than one object; the method should make and return a String.

B.

A method should not throw an exception.

C.

The " throw " statement is used without a matching " catch " statement.

D.

The name of the method should be " friendlyGreeting " .

Guidewire Home provides self-service capabilities for managing storage access permissions for InsuranceSuite. According to the training, which app in Guidewire Home is used for this purpose?

A.

The Storage Access app

B.

The Quality Gates app

C.

The Lifecycle Manager app

D.

The Build Promotion app

E.

The Planets app

Which log message follows logging best practices in production?

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.