During an implementation, which Git branch contains code across all releases including code under active development?
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?
When viewing application logs in Datadog for troubleshooting, which methods can be used to find specific information within the logs, according to the training? Select Two
An insurer with a self-managed InsuranceSuite implementation is preparing to transition to Guidewire Cloud Platform (GWCP). Which two Cloud Delivery Standards must be met before deployment? (Select two)
Succeed Insurance needs to modify an existing PolicyCenter typelist called PreferredContactMethod with new options. Following best practices, which of the following options would a developer use?
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?
The Panel Ref in the screenshot below displays a List View with a toolbar. Add and Remove buttons have been added to the toolbar, but they appear in red, indicating an error. The Row Iterator has toAdd and toRemove buttons correctly defined.
What needs to be configured to fix the error?
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?
An insurer wants to add a new typecode for a loan account to a base typelist, BankAccountType, that has not been extended. Which step must a developer take to perform this task following best practices?
The business wants to create a new popup in BillingCenter that displays a single customer invoicing inquiry. The popup will have the inquiry date, inquiry contact, and the description of the inquiry. Which configurations follow best practices to make this page editable? (Choose Two)
An insurer requires a single column of information to be displayed in several places in the application. The insurer anticipates that fields may be added to or removed from this column in the future and wants to do this without making changes in multiple places. Which container meets this requirement?
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)
Which statements describe best practices when using bundles in Gosu to save new entities/edit existing entities? (Select Two)
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?
A developer has added multiple related features in an implementation that needs to be tested. For efficiency, all those features need to be tested at the same time. Which two statements are true about including multiple tests? (Select two)
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?
An insurer has extended the ABContact entity in ContactManager with an array of Notes to capture information of interest about the contact over time. 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?
An insurance carrier plans to launch a new product for various types of Recreational Vehicles (RVs)—such as motorhomes, boats, motorcycles, and jet skis. When collecting information to quote a policy, all RVs share some common details (like purchase date, price, year, make, and model), but each type also has its own unique properties. According to best practices, what should be done to configure the User Interface so that only the relevant RV details are shown when creating a policy quote? Select Two
ABCompanyVendor is an entity in the base application. An insurer needs to add a new company vendor type for auto glass shops. Which configuration fulfills the requirement and follows the best practices?
Which two performance issues of Guidewire core products can be analyzed using the Guidewire Profiler? (Select two)
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)
An insurer has a new requirement for capturing information for doctors added to ContactManager. In the Additional Info section of the Basics tab, a new Contact Picker for Hospital Affiliation will be added. When updated, the hospital address should update automatically.
What is the appropriate configuration approach to satisfy these requirements?
Given the following query:
uses gw.api.database.Query
var query = Query.make(Claim)
query.compare(Claim#ClaimNumber, Equals, " 123-45-6789 " )
var claim = query.select().AtMostOneRow
Which follows the best practice to find the urgent open activities of the claim, considering the memory usage and bundle size?
Given the image:
Which container type must be added between Card and Input Column?
An insurer wants to add a new typecode for an alternate address to a base
typelist EmployeeAddress that has not been extended.
ACME Insurance requires that addresses are validated through a postal service in all insurance products. Which package structure and Gosu class name follow best practice?
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?
Succeed Insurance needs to modify an existing PolicyCenter typelist called PreferredContactMethod with the following options: Social Media, Work Phone, and Work Email. Following best practices, which of the following options would a developer use to implement these requirements?
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?
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?
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?
Given the following code sample:
var newBundle = gw.transaction.Transaction.newBundle()
var targetCo = gw.api.database.Query.make(ABCompany)
targetCo.compare(ABCompany#Name, Equals, " Acme Brick Co. " )
var company = targetCo.select().AtMostOneRow
company.Notes = " TBD "
Following best practices, what two items should be changed to create a bundle and commit this data change to the database? (Select two)
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?
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?
You need to retrieve Claim entity instances created after a specific date. Which methods ensure that the filtering is performed in the database for optimal performance?
Succeed Insurance needs to add a new getter property to the Java class generated from the Contact entity. According to best practices, what steps below would allow this to get implemented? (Select Two)