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

Which scenarios should database consistency checks be run in? (Select two)

A.

A customer created a subtype of an entity that has a required column and imported data through the user interface.

B.

A customer created a new LocationRef, a folder that contains a new PCF file, Detail View, and List View.

C.

A customer created their own SQL script to populate empty columns in their production database.

D.

A customer created a new typelist and added several new typecodes to an existing typelist.

E.

A customer extended an entity with a column that is not required and imported data for the column through the user interface.

An insurer wants to add a new typecode for an alternate address to a base typelist EmployeeAddress that has not been extended. Following best practices, which step must a developer take to perform this task?

A.

Create an EmployeeAddress_Ext.tti file and add a new typecode alternate.

B.

Create an EmployeeAddress.tlx file and add a new typecode alternate_Ext.

C.

Create an EmployeeAddress.ttx file and add a new typecode alternate_Ext.

D.

Open the EmployeeAddress.tti and add a new typecode alternate.

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?

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)

An insurer requires specific fields for a new Adjuster contact, which is a specific type of User contact. Which actions follow best practices for adding these Adjuster-specific fields? (Select two)

A.

Add the new fields to the Adjuster subtype entity.

B.

Define the Adjuster fields directly in the base User entity.

C.

Create an Adjuster subtype entity.

D.

Create a new entity AdjusterDetails_Ext and link it via foreign key to User.

Given this function:

929 public function checkConnection() {

930 try

931 {

932 var conn = DriverManager.getConnection(url)

933 // logic here

934 }

935 catch (e : Exception)

936 {

937 // handle exception

938 }

939 }

What action will align the function with Gosu best practices?

A.

Move left curly braces on lines 931, 934, and 936 to the end of the previous lines

B.

Change line 935 to read ' catch {e: Exception) '

C.

In line 933, change DriverManager to driver Manager (camel case)

D.

Add a comment for lines with significant code (specifically, lines 933 and 937)