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.
Suppose that a new Process class has been created in a model and a build generated command is performed. What needs to be done next?
A. Implement the methods in the generated impl version of the class.
B. Copy the generated impl class from the build/svr/gen/temp folder into the impl package.
C. Create a new class in the impl package.
D. Implement the modeled methods in the base class.
Which of the following statements about handcrafted service layer classes is true?
A. Google Guice dispatches events to listeners
B. The Persistence Infrastructure (PI) Adapter is used to translate high-level data requests to entity operations
C. The Entity Interface provides search (read-multi) operations
D. Entity classes are not modeled, as they are provided by the Entity Interface
Which two of the following statements about VIM files are true? [Select 2]
A. They contain common fragments of UIM pages for reuse
B. They require corresponding properties files
C. They can contain any of the UIM elements supported by a UIM file
D. They must contain a PAGE_ID element
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 two of the following statements about the CONNECT element are true? [Select 2]
A. When used inside a LIST, a CONNECT element can have a TARGET element as a child element
B. When used inside a FIELD, a CONNECT element must have at least one SOURCE, TARGET, or INITIAL as a child element
C. The CONNECT element can be used to indicate which SERVER_INTERFACE is related to which ACTION_CONTROL
D. The CONNECT element can have multiple TARGET elements
E. The CONNECT element is a valid child of the PAGE element
Which of the following are design objects in the Documentation Center version of the Analyzer (CIARA)?
A. Process flows
B. Business process objects
C. Application properties
D. Database columns
E. Cascading style sheets
Which of the following statements are correct?
A. After making modeling changes in RSA, build generated will be required, but build database may not be necessary.
B. It is not necessary to stop the Server in Eclipse after making changes to the model in RSA, but it may be necessary to refresh the Server project in Eclipse.
C. The user should be able to view the application's starting page, providing at least Tomcat is running.
D. Irrespective of whether the Server is launched before Tomcat, or Tomcat before the Server, the application should still behave correctly in the browser.
Which of the following are valid values for the MODE attribute of the MENU element?
A. GLOBAL
B. NAVIGATION
C. TRUE
D. WIZARD_PROGRESS_BAR
E. FALSE
Which of the following are stored in the datamanager_config.xml file?
A. Database table names used by the application
B. Database type and port numbers
C. References to DMX files containing data to be inserted on a build
D. References to SQL scripts to be run on a build
E. References to CTX files containing code tables to be inserted on a build
Which of the following statements about the extension class EntityExtension that extends the entity class Entity is true?
A. The generator produces a new Java class curam.struct.EntityExtensionDtls containing any new or overridden attributes, as well as the attributes remaining from curam.struct.EntityDtls.
B. The generator produces a new Java class curam.struct.EntityExtensionDtls containing any new or overridden attributes.
C. The generator produces no new Java classes, but replaces curam.struct.EntityDtls with a new version containing the new or overridden attributes, as well as any others remaining from the original Entity.
D. The generator produces a new curam.intf.EntityExtension class containing the method signatures of curam.intf.Entity, as well as any new or overridden methods.
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
When customizing a Codetable (CTX) file in Cúram, which of the following statements are true?
A. To add a new entry to a code table, create a new CTX file in the custom directory with the same name as the existing CTX and add the new entry
B. To change an entry in a code table, copy the existing file to the appropriate custom directory, append custom_ to the code name, and insert the new code value
C. To remove an entry from a code table, copy the existing file to the appropriate custom directory and remove the entry in question
D. To change an entry in a code table, create a new CTX file in the custom directory with the same name as the existing CTX, copy the code table item from the existing CTX, and make any required changes to the copy
E. Custom codes are appended to the end of the corresponding, existing code table
Which of the following is a complete description of the process involved in creating a valid
A. Create a new Index class containing the index attributes and add a named association between this class and the target Entity class
B. Create a new Struct class containing the index attributes and add a named association with stereotype index between it and the target entity class
C. Create a new Entity class with an attribute of stereotype index and add an association with stereotype index between it and the target Entity class
D. Create a new Association class with an attribute of stereotype index and add an association between it and the target Entity class
What are three effects of running a build clean server command? [Select 3]
A. All database tables are dropped and rebuilt
B. All generated artifacts are deleted
C. All code table files are recompiled
D. All application navigation files are checked and loaded
E. All client pages that have changed since the last build are regenerated
F. All generated and handcrafted code is compiled