Which of the following statements about the different approaches to generating unique IDs are true?
A. A dedicated BPO should be used to generate readable keys.
B. A programmatic or model-based approach can be used when the key needs to be returned for further processing.
C. The model-based approach should be used to generate keys from the Default KeySet.
D. The model-based approach reduces the chance of key conflict.
E. A key set must be specified when using the programmatic approach.
The Curam page shown here is configured to allow the developer to identify which action control was selected when the user clicks either button.
Which of the following pieces of UIM could be used to do this?
A. Exhibit A
B. Exhibit B
C. Exhibit C
D. Exhibit D
Review the following diagram:
After a build generated, which of the following assign methods is generated on StructA?
A. public StructA assign(StructB structB){ structA.attribute1 = structB.attribute1; structA.attribute2 = structB.attribute2; structA.attribute3 = structB.attribute3; structA.attribute4 = structB.attribute4; }
B. public StructA assign(StructB structB){ structA.attribute4 = structB.attribute5; }
C. public StructA assign(StructB structB){ structA.attribute1 = structB.attribute1;
structA.attribute2 = structB.attribute2;
structA.attribute3 = structB.attribute3;
}
D. public StructA assign(StructB structB){ structA.attribute1 = structB.attribute1; structA.attribute2 = structB.attribute2; structA.attribute3 = structB.attribute3; structA.attribute4 = structB.attribute5; }
Which of the following scenarios would depend on using the MENU element?
A. Configuring a control at page-title level with 3 options for the user to select.
B. Defining a modal page that is part of a wizard.
C. Specifying that a field in a LIST should contain one or more ACTION_CONTROL elements.
D. Defining which sections users can navigate to in the Applications Section Bar.
E. Providing the user with in-page navigation links.
this be replaced with a set of radio buttons?
A. Ensure that the underlying Domain Definition on the model resolves to SHORT_CODETABLE_CODE.
B. Set the SHORT attribute on the FIELD to true.
C. Set the Radio Button option on the Domain Definition to true.
D. Set the Radio Button option on the corresponding struct to true.
Which of the following are valid subdirectories of a server component directory?
A. model
B. codetable
C. database
D. EJBserver
E. message
Which of the following are valid ways to enforce that a value be mandatory for a given attribute?
A. Write custom logic at method level in the Java class
B. Configure the Require_Mandatory property of the entity's attribute to be set to true
C. Specify the name of the field in the Mandatory_Fields property of the modeled operation's argument struct
D. Write a custom Java function to check for a value being present and specify the function on the Custom_Validation_Function_Name property of the relevant Domain Definition
Custom validations written in Java can be localized by using an external locale-specific properties file. Which of the following are correct locale-specific properties files for such validations?
A. CustomValidationMessages_fr.properties.
B. Jp_CustomValidationMessages.properties.
C. CustomValidationMessages.properties_fr.
D. CustomValidationMessages_en_US.properties.
E. Sp_CustomValidationMessages.properties.
If a change is made to a UIM page, what are the minimum steps required to make the new page visible to the client browser?
A. Restart the server and Tomcat and refresh the page.
B. Stop the server and Tomcat, build a clean client, refresh in Eclipse, and restart the server and Tomcat.
C. Stop Tomcat, do a build client, refresh in Eclipse, and restart Tomcat.
D. Build a clean client and refresh in Eclipse.
E. Build the client.
Which two of the following are valid options for model-specified validations? [Select 2]
A. Maximum_Value
B. Maximum_Chars
C. Minimum_Size
D. Starts_With
E. Ends_With