What are the different data sources for Appian record types?
A. Database and Process only
B. Database, Process, and Other Web Service
C. Database, Process, Salesforce, and Other Web Service
D. Process and Other Web Service only
You want to evaluate an expression by using a loop. Which option should you use?
A. a!forEach()
B. a!for()
C. a!while()
D. a!do()
You have been tasked with creating a new expression rule in an application with the acronym ABC. According to Appian best practices, which name is most appropriate?
A. ABCGetUserById
B. ABC_GetUserById
C. ABC_GetUser_byId
D. ABC_get_user_by_id
You want to retrieve data from the database to show on your form. Which option should you use?
A. a!queryEntity()
B. a!querySelection()
C. a!query()
D. a!queryColumn()
Which two filter types should you apply to limit the record list by default? (Choose two.)
A. Default filters
B. Source filters
C. User filters
D. Filter by search field
An organization has data spread across multiple platforms outside of Appian. They want to create an Appian application to leverage this data. Which record type data source should they use?
A. Web Service
B. Database
C. Salesforce
D. Process
A client asks you to store work location information for their employees. The client mentions that multiple employees may be assigned to multiple work locations. Which type of database relationship is the client describing?
A. One-to-Many (1:N)
B. Many-to-One (N:1)
C. Many-to-Many (M:N)
D. One-to-One (1:1)
Every business process, whether inside or outside of Appian, requires which of the following?
A. Human interaction
B. Defined steps
C. Reporting
D. Automation
What table relationship is illustrated in the following data structure (if the relationship is evaluated from left to right)?
A. Many to Many (M:M)
B. Many-to-One (M:1)
C. One-to-Many (1:M)
D. One-to-One (1:1)
Review the following table.
Given the following options are in mySQL, which option correctly alters the last row on the table?
A. INSERT price = 0.9 INTO product WHERE product_id = 3;
B. MODIFY product UPDATE price = 0.9 WHERE product_id = 3;
C. SET product (price) VALUES (0.9) WHERE product_id = 3;
D. UPDATE product SET price = 0.9 WHERE product_id = 3;