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.
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 are valid values for the MODE attribute of the MENU element?
A. GLOBAL
B. NAVIGATION
C. TRUE
D. WIZARD_PROGRESS_BAR
E. FALSE
If stereotyped methods were included in an entity class MyEntity, the implementation of these methods displays in which Java class?
A. curam.impl.MyEntity
B. curam.base.MyEntity
C. curam.fact.MyEntity
D. curam.intf.MyEntity
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.
For an entity named Sample, which of the following are shadow types that the generators may create?
A. SampleKeyDtls
B. SampleKeyList
C. SampleKey
D. SampleListDtls
Examine the following UIM code:
Which of the following statements are true?
A. The Page Title is read from a properties file.
B. The modifyPersonBean is invoked when the page loads.
C. A CONNECT element at the page level is used to pass a page parameter into a display phase SERVER_INTERFACE.
D. The UIM page is called PersonDemo_modifyPersonPage.uim.
E. The cluster value Cluster.Title.PersonDetails is read from a SERVER_INTERFACE.
Which of the following represents the correct approach for customizing curam-config.xml compliantly?
A. Create a file ending in config.xml in the custom folder containing the changes
B. Create a file ending in -config.xml in the custom folder containing the changes
C. Create a file ending in Config.xml in the custom folder containing the changes
D. Change curam-config.xml in place
Which three of the following entity stereotypes require the user to specify input parameters when modeling? [Select 3]
A. nkread
B. nkmodify
C. nkreadmulti
D. nsinsert
E. nsremove
F. readmulti
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