PDF Download
FREE AND STUDY GAMES ABOUT FUNDAMENTALS EXAM
Actual Qs and Ans Expert-Verified Explanation
This Exam contains:
-Guarantee passing score -39 Questions and Answers -format set of multiple-choice -Expert-Verified Explanation
Question 1: An insurance company wants to also show the number of elemts in
ABContact's HistoryEntries array using the following format: History (x) where x is number of lements in the HistoryEntries array. Which two steps must be completed?
Answer:
-Update the value of the display key: Training.History = History ({0})
-Update the label property of the widget: DisplayKey.get("Training.History", anAbcontact.HistoryEntries.length)
Question 2: Which three statements are true about creating new custom subtypes?
Answer:
-A custom subtype entity cannot have an ETX file -Entities marked as final cannot have subtypes -A Custom subtype entity is defined in an ETI file
Question 3: What can a developer use to invoke the sendWelcomeLetter function?
Answer:
-Reference sendWelcomeLetter() function from any other enhancement function of ABContact with the
following syntax: this.sendWelcomeLetter()
Question 4: Which step must a developer take to add a new column field to the OOTB Activity entity?
Answer:
-Create an Activity.etx file if one does not already exist Question 5: Official entity has an array key called Reports of the type Report. The Report entity has a typekey field called ReportType. Given: var thisOfficial: Official. Which expression to retrieve a single array element with ReportType 'police'?
Answer:
-thisOfficial.Reports.firstWhere( -> r.ReportType == ReportType.TC_POLICE) Question 6: The Claim entity has the following subtypes: PersonalAutoClaim, BusinessOwnersClaim, CommercialPropertyClaim. Which scenario is use case for modal containers?
Answer:
-The application needs to dynamically include one of the several PCF files based on the Claim Subtype Question 7: Official entity that has an array key called Reports of the type Report. Given the delcared variables: var polReport : Report, var thisOfficial : Official. Which expression adds the new element, polReport, to the Reports array of thisOfficial?
Answer:
-thisOfficial.addToReports(polReport) Question 8: Which statement is true about how the application stores subtypes in the database?
Answer:
-Subtypes are stored within the same database as their parent types.
Question 9: Which two steps must be completed to make a Date Input editable?
Answer:
-Add a Toolbar and Edit Buttons to the Screen that includes the Detail View -Set the editable property of the Date Input widget to true Question 10: An ins co wants to create a popup to allow the logged-in user to view/edit a contact's details. The popup should open in edit mode and the Update and Cancel buttons should be displayed. Which two steps must be completed?
Answer:
-Define one variable for each parameter from the entry point -Define an entry point for the popup with one parameter
Question 11: Which two statements are true about a new custom typelist?
Answer:
-A new custom typelist cannot have a TTX file -A new custom typelist is defined in a TTI file Question 12: Which two steps must be completed to create a custom entity 'Report' with text fields and a calculated datetime field?
Answer:
-Create an entity Report_Ext.eti -Create an enhancement property ofr the Report_Ext entity Question 13: Which four location types directly reference one or more Screen Containers?
Answer:
-Wizard -Popup -Page -Worksheet
Question 14: Which two statements are true about Detail Views?
Answer:
-Every detail VIew must have an input set -The filename of a reusable Detail View ends with the 'DV' Suffix Question 15: An insurance company wants to validate a custom MedCase_Ext entity using validation rules. Which two statements are true?
Answer:
-medCase_Ext.reject() function must be called to raise an error/warning -MedCase_ExtValidationRules Rule Set must be created and implement the Validatable delegate Question 16: An ins company wants to store med info of Doctor contacts. The app should not allow saving new Doctor's with an expired medical license. An error should appear if the medical license's expiration date is in the past. What do the developers have to do?
Answer:
-A new Validation Gosu Rule must be created for the Doctor entity to validate in both the UI and API
Question 17: Which two steps must be completed to extend an OOTB AccountType typelist that does not have an any extension files?
Answer:
-Create the AccountType.ttx -Verify that the typelist's final property is set to false Question 18: Developers want to debug the application to find a bug reported by the testers. In which three files can the developers put breakpoints?
Answer:
-ABContactSummaryExpressions.gs -ABContact.javae.-ABContactExtEnhancement.gsx Question 19: Which two steps must be completed to reference a typelist with a Typefilter?
Answer:
-Add a typekey field to the entity to reference the typelist -Specify the name of the filter to be referenced in the typefilter attribute
Question 20: Which two statements are true about Gosu Enhancements?
Answer:
-The 'this' keyword can be used to reference physical fields, getter properties, setter properties, and functions of the entity -Subtype entities inherit methods and properties defined in the parent entity's enhancement Question 21: A Text Input widget displays the name field of the contact entity. The ins co wants to make the Text Input value linkable to a location containing more details about the contact.Which two statements describe correct configurations to imeplement this?
Answer:
-Configure the Text Input widget's action property to call a Popup with the contact -Configure the Text Input widget's action property to call a Page with the contact Question 22: An Insurance Company wants to add a new field to the OOTB User entity. It will store the average workload of the user, and values will range from 0.0 to 999.9. User entity does not have any EIX or ETX files. What is the correct order of steps to add?
Answer:
- Create the User.etx
- Add a new column element