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

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?

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

What type of Assessment Check ensures that applications have monitoring and logging frameworks in place?

A.

Performance

B.

Upgrades

C.

Security

D.

Operations

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

In TrainingApp. the Person Info card of the Details screen for a contact has a section where basic employment information is stored:

The insurer requires this information to be displayed, in this format, on every card of both the Summary and Details screens, for every individual person contact. This information will be stored in a container to be reused on all these cards.

Which object will most efficiently meet this requirement, according to best practices?

A.

Detail View Panel

B.

Input set widget

C.

Input Set PCF file

D.

Worksheet PCF file

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?

A.

validatePostalCode(anAddress) == true

B.

validatePoslalCode(anAddress) == null

C.

validatePostalCode(anAddress)

D.

validatePostalCode(anAddress) ? null: false

An insurer has extended the ABContact entity in ContactManager with an array of Notes. A developer has been asked to write a function to process all the notes for a given contact. Which code satisfies the requirement and follows best practices?

A.

Code snippet

for ( note in anABContact.Notes ) {

//do something

}

B.

Code snippet

for ( i = 1..anABContact.Notes.length ) {

//do something

}

C.

Code snippet

var aNote = anABContact.Notes.firstWhere(\ note -> note.Author != null)

//do something

D.

Code snippet

while ( exists ( note in anABContact.Notes ) ) {

//do something

}

Given the image:

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

A.

Detail View PCF File

B.

Detail View

C.

List View

D.

Input Set

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?

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.

The sources describe different types of deployment strategies for InsuranceSuite applications. What are characteristics of a selective deployment?

A.

It is primarily used for deploying builds to production star systems.

B.

It always involves a database restore from production.

C.

It requires deploying all InsuranceSuite and EnterpriseEngage applications simultaneously.

D.

It is the only strategy that supports rolling updates.

E.

It allows deployment of only the selected InsuranceSuite applications.

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?

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