You have two structs, Struct A and Struct B. Struct A contains an attribute called att1 of type MYDOMAIN1, based on SVR_INT64. Struct B contains an attribute called att1 of type MYDOMAIN2, based on SVR_STRING.
What happens when the assignment statement structA.assign(structB) is executed?
A. It auto casts structA's attribute data types to match that of structB.
B. It auto casts structB's attribute data types to match that of structA.
C. It will throw a cast error.
D. It will throw error "assign" method cannot have arguments".
Suppose that you created a new Process class in your model and performed a build generated command.
What do you need to do 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. Implement the modeled methods in the base class.
D. Create a new class in the impl package.
StructA aggregates two structs, namely, StructB and StructC.
Which statement about the aggregation is correct?
A. No two structs in the aggregation can have attributes with the same name.
B. Unique role names must be specified for the aggregations.
C. Unique labels must be specified for the aggregations.
D. Other aggregations cannot include StructA, StructB, or StructC.
Which task is valid when developing REST APIs in IBM Cúram SPM
A. Run `build database' whenever you modify ResourcesConfig.xml.
B. Define operations of type <
C. Document the structs and operations in ResourcesConfig.xml so that the documentation appears in Swagger UI.
D. Specify the mandatory fields in the model.
You want to execute a custom SQL script called MyChanges.sql.
Which statement describes how to execute MyChanges.sql when the database is built?
A. Add MyChanges.sql to your custom data\test folder, from where it loads automatically.
B. Add MyChanges.sql to your custom data\test folder and reference it from a DMX file.
C. Add MyChanges.sql to your custom folder and reference it from datamanager_config.xml.
D. Add MyChanges.sql to your custom folder and reference if from the database ANT script.
In the screenshot below, what type of application navigation element can be expected to correspond with the element highlighted in red?

A. Section.
B. Menu.
C. Tab.
D. Navigation Tab.
Which two statements about domain plug-ins are true? (Choose two.)
A. They are associated with domain definitions via domain definition property in RSA.
B. They are inherited from parent domain definitions.
C. They perform validation checks defined as domain definition properties.
D. They are implemented by using JSP Scriptlets.
E. They execute in the EJB container.
You want to model attribute2 as a code table in the following entity.

Which two steps are required? (Choose two.)
A. Set the domain definition for attribute2 to CODETABLE_CODE.
B. Set the Type for SAMPLE_DOMAIN2 to CODETABLE_CODE.
C. Define the code table name as a property of attribute2.
D. Define the code table name as a property of SAMPLE_DOMAIN2.
E. Define the code table name as a property of CODETABLE_CODE.
An entity class called MyEntity includes a non-database method that is defined using the <
In which Java class is the method implemented?
A. curam.intf.MyEntity
B. curam.base.MyEntity
C. curam.impl.MyEntity
D. curam.fact.MyEntity
You want to define infrastructure validation for MYDOMAIN, which is based on SVR_INT64. Which validation property can you define for MYDOMAIN?
A. Pattern_Match.
B. Enable_Validation.
C. Maximum_Size.
D. Custom_Validation_Function_Name.