032524 Flashcards
Minimum security level needed to evaluate an expression:
A. Administrator
B. Editor
C. Viewer
D. Deny
D. Deny
You are creating a database table automatically from an existing CDT. How do you specify the foreign key column name in the database? (Choose 1 or more)
A. Database column names are the same as the CDT field names.
B. Foreign key fields are added as <CDT>_FK
C. The column name in the database cannot be controlled when tables are created automatically.
D. Under foreign key options, select "I know the name of the database column."</CDT>
D. Under foreign key options, select “I know the name of the database column.”
You are creating a custom data type that is related to another custom data type. What sort of relationship should you create between them so that you can view related data using dot notation?
A. Mapped
B. Flat
C. Nested
D. Hierarchical
C. Nested
You’re publishing the SS_Loan CDT to the Data Store. You notice that the data type is displayed as SS_Loan^4. What does this indicate?
A. There are other CDTs with the same name in different applications.
B. The CDT is being raised to the 4th power.
C. The Data Store is referencing an old version of the CDT.
D. The CDT is referenced by 4 objects in the application.
D. The CDT is referenced by 4 objects in the application.
You are making changes to a CDT but first want to make sure it won’t affect any other objects. Where can you check to see what other objects rely on a CDT?
A. The CDT properties
B. Check in the Admin Console
C. Check each object manually
D. The dependents list
D. The dependents list
You are creating a CDT in Appian that will hold an Invoice object. Each invoice can have one or more expenses added to it. Which of the following is the best practice for this use case?
A. Create two separate CDTs, Invoice and Expense. Invoice will have a foreign key field that will link to Expense’s primary key.
B. Create an expense field in the Invoice CDT and mark it as an array.
C. Create two separate CDTs, Invoice and Expense. Each will have foreign key fields that link to one another.
D. Create two separate CDTs, Invoice and Expense. Expense will have a foreign key field that will link to Invoice’s primary key.
D. Create two separate CDTs, Invoice and Expense. Expense will have a foreign key field that will link to Invoice’s primary key.
What is the purpose of a data store?
(Select all that apply)
A. It specifies which Appian engine is used to retrieve data
B. To store Appian data in memory for rapid use
C. To define the structure of your application
D. To connect CDTs to database tables.
D. To connect CDTs to database tables.
The primary purpose of CDTs is to structure and model data throughout the app.
A. True
B. False
B. False
How would you cast a text value to a date value?
A. Appian does not support this functionality
B. date()
C. change(todate)
D. todate()
D. todate()
If I wanted the substring “Chi” from the string “Chicago” which would I use?
A. text(“Chicago”, 3)
B. substr(“Chicago”, 3)
C. subString(“Chicago”, 3)
D. left(“Chicago”, 3)
D. left(“Chicago”, 3)
left(text: “Chicago”, num_chars: 3)
You are developing an on boarding application for a tech company. In addition to the information that the applicant enters into the form, they would like to initialize the application status based on whether the applicant is internal or external. How would you design your interface to capture the status in the rule input?
A. Add an input field that displays a value calculated based on whether it is an internal or external hire.
B. Use an a!save() function in the submit button function.
C. Use a!refreshVariable on the input field for internal/external hire.
D. Use an a!save() function on the input field for internal/external hire.
B. Use an a!save() function in the submit button function.
You finished building an interface for an online retailer for customers to select items from their catalogue. However, when the customer selects an item and hits the Check-Out button, the selected items are not being passed into the next interface. What should you troubleshoot first?
A. Interface Security
B. Local Variables
C. Activity Class Parameters
D. Rule Inputs
D. Rule Inputs
Naming convention for interfaces?
A. Feedback Form AB
B. AB Feedback Form
C. AB_feedbackForm
D. AB_FeedbackForm
D. AB_FeedbackForm
Interface security does not impact the ability to view the interface in a site.
A. True
B. False
A. True
Best practice for labels:
(Select all that apply)
A. Justified
B. Above
C. Adjacent
D. Hidden
A. Justified
C. Adjacent