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

As a developer for Succeed Insurance, you have been given a requirement to add the following options to a ContactManager typelist BusinessType that was provided with the product:

    Auto Repair Shop

    Home Inspector

    Collection Agency

Following best practices, which of the following options correctly adds these options to the existing typelist?

A.

Adding the following options to the existing BusinessType.ttx file:Code: auto_repair_shop, Code: home_inspector, Code: collection_agency

B.

Adding the following options to the BusinessType.tti file:Code: auto_repair_shop_Ext, Code: home_inspector_Ext, Code: collection_agency_Ext

C.

Adding the following options to a new BusinessType_Ext.tti file:Code: auto_repair_shop, Code: home_inspector, Code: collection_agency

D.

Adding the following options to a new BusinessType_Ext.ttx file:Code: auto_repair_shop, Code: home_inspector, Code: collection_agency

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?

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.

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

There is a requirement for an additional filter on Desktop Activities. The filter requires a complex query. Which option will meet the requirement and follow best practices?

A.

Use a Gosu query with a " where " clause to find the needed rows, then pass the results to the filter.

B.

Use a " for " loop with an " if " statement to find the needed rows, then pass the results to the filter.

C.

Create a function using a Gosu query and a subselect clause, then call that function from the filter property.

D.

Create a function using a Gosu query and compare clauses, then call that function from the filter property.

According to best practices, which two requirements should be implemented using a Pre-Update Rule? (Select two)

A.

Update the address details on all currently unissued checks associated with a Contact when that Contact ' s address is changed.

B.

Initiate an asynchronous background workflow process after a Claim has been committed to the database.

C.

Create a transactional audit entry that captures both the prior value and the new value immediately before committing a change to a specific field.

D.

Automatically determine the optimal adjuster to handle a newly reported loss.

Which logging statement follows best practice?

A.

If(_logger.InfoEnabled) { _logger.debug( " Adding ' ${contact.PublicID} ' to ContactManager " ) }

B.

_logger.error(DisplayKey.get( " Web.ContactManager.Error.GeneralException " , e.Message))

C.

If(_logger.DebugEnabled) { _logger.debug(logPrefix + someReallyExpensiveOperation()) }

D.

_logger.info(logPrefix + " [Address#AddressLine1= " + address.AddressLine1 + " ] [Address#City " + address.City + " ] [Address#State " + address.State + " ] " )

An insurer stores the date a company was established in the company records. A business analyst identified a new requirement to calculate a company ' s years in business at the time a loss occurred. The years in business will be determined using the date established field and the claim date of loss.

The image below shows the Contact structure in the data model:

Which configuration steps will satisfy the requirement? (Select two)

A.

Create a new enhancement class for the Company entity under the insurer package

B.

Create a function to calculate the years In business in a Company enhancement

C.

Create a setter property to calculate the years in business in the Contact enhancement

D.

Create a new enhancement class for the Contact entity under the gw package

E.

Create a function to calculate the years in business in a Ul Helper class under the gw package

F.

Create a getter property to calculate the years in business in a Company enhancement

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)

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

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

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

What is a purpose of logging in deployed systems that follows best practices?

A.

Capturing the significant events for auditing

B.

Troubleshooting payments by logging bank account numbers

C.

Recording the details of a user ' s login credentials

D.

Saving the runtime database queries and procedures