Appian Associate Developer (ACD101) Free Practice Test
Question 1
Match each scenario to the correct relationship type in your data model design.
Note: Each relationship type will be used once. To change your responses, you may deselect your response by clicking the blank space at the top of the selection list.

Note: Each relationship type will be used once. To change your responses, you may deselect your response by clicking the blank space at the top of the selection list.

Correct Answer:

Explanation:
* " You have a product with basic fields and an additional detailed product description with all the technical details that is regularly updated. " - One-to-many
* " You have many employees on multiple projects. " - Many-to-many
* " You have an order with order items. " - One-to-many
* A one-to-many relationship is used when a single record from one table (product) is associated with multiple records in another table (product descriptions).
* A many-to-many relationship exists when multiple records from one table (employees) are associated with multiple records from another table (projects).
* An order with order items also represents a one-to-many relationship where one order can have multiple order items.
References
* Appian Documentation: Data Modeling in Appian
Question 2
You need to configure the database to have a one-to-many relationship between ACME_ORDER and ACME_ORDER_ITEM.
What is a valid method for configuring this relationship in the database?
What is a valid method for configuring this relationship in the database?
Correct Answer: C
Question 3
You created a user interface that has a text field. After you type into the text field, you notice the text disappears when you click out of the text field.
What could be the issue?
What could be the issue?
Correct Answer: C
Question 4
Which condition must be true in order to establish record type relationships?
Correct Answer: C
Question 5
What are the three parts of a test case in Appian? (Choose three.)
Correct Answer: B,D,E
Question 6
You need to build an expression that takes in a list of values and prefixes the values with "ID:".
What is a valid definition to the expression?
What is a valid definition to the expression?
Correct Answer: C
Question 7
You are constructing an interface that is used as the form of a User Input Task in a process model.
The data entered on the form must be available in the process after the form is submitted.
Which domain prefix should be used for variables in the interface?
The data entered on the form must be available in the process after the form is submitted.
Which domain prefix should be used for variables in the interface?
Correct Answer: C
Question 8
You are configuring a local variable on an interface to store the date and time that the username field was last modified. The local variables are currently configured as follows:

Which a!refreshVariable configuration should be added so that local!usernameLastModified stores the correct timestamp?

Which a!refreshVariable configuration should be added so that local!usernameLastModified stores the correct timestamp?
Correct Answer: C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 9
You have a record type, ABC_Author , backed by a database table.
You need to retrieve the total number of authors without loading all the data.
According to Appian best practices, which code snippet accomplishes this goal in the most efficient way?
You need to retrieve the total number of authors without loading all the data.
According to Appian best practices, which code snippet accomplishes this goal in the most efficient way?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 10
You want to replace any invalid email addresses in a list of email addresses with the word 'invalid'.
A rule already exists within your application which determines if an email address format is valid:
"MAIL_isValidEmail()". This rule takes in a single email address and returns either "True" or False".
Which code snippet will return the desired output?
A rule already exists within your application which determines if an email address format is valid:
"MAIL_isValidEmail()". This rule takes in a single email address and returns either "True" or False".
Which code snippet will return the desired output?
Correct Answer: A