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 are creating an interface and need to pass data out to its parent interface. With type of variable is required to achieve this?
A. Parameterised process variable
B. Refresh variable
C. Rule inputs
D. Local variables
What is the most appropriate interface component to display tabular data?
A. Rich Text
B. Column Layout
C. Editable Grid
D. Read-only Grid
Given a Text type input of ri!text, which function will return that text without any spaces in the text?
A. trim(ri!text)
B. remove(ri!text, " ")
C. stripwith(ri!text, " ")
D. flatten(ri!text)
You need to query some data from the database using more than one filter. Which parameter for a!query() should you use to define your filters?
A. filter
B. logicalExpression
C. aggregation
D. selection
Which environment is most common for User Acceptance Testing?
A. Production
B. Development
C. Staging
D. Test
You connected multiple input paths to an XOR gateway in a loop. What will happen when the second input flow reaches the gateway?
A. All input flows will execute.
B. The first flow executes successfully, and the remaining will wait indefinitely.
C. The first flow executes successfully, and the remaining will throw an error.
D. The first flow executes successfully, and the remaining will be skipped.
Your team lead mentions that the environment has been performing very slow lately, and the reason is unclear. A process model is consuming a lot of memory, and this could be causing the slowness in the environment.
What are two valid solutions to this issue? (Choose two.)
A. Manually delete processes that have already been completed or cancelled so it does not cause further performance issues.
B. Configure the automatic process clean up so that it does not automatically clean-up processes.
C. Delete processes alter completion or cancellation by configuring the Data Management tab in the Process Model Properties.
D. Archive processes after completion or cancellation by configuring the Data Management tab in the Process Model Properties.
In a process model, you want all outgoing flows lo start once all incoming flows have reached the node. Which gateway is most appropriate to use?
A. NAND
B. OR
C. XOR
D. AND
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()
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
When setting the assignment of a User Input task, you need the task to be assigned to the person who started the process. Which option is appropriate to use to accomplish this goal?
A. pp!name
B. pm!creator
C. pp!initiator
D. pm!name
Which three objects can be a valid page in a Site? (Choose three.)
A. Data store
B. Report
C. News Feed
D. Process models with a start form
E. Record type
In a rule, there is a variable named local!numberOfCustomers which will eventually change value.
You are tasked with creating a variable that captures the original value so that you can later compare the original and new value.
Which parameter settings should you use for your new variable?
A. refreshAlways:true
B. refreshOnReferencedVarChange: false
C. refreshOnReferencedVarChange: true
D. refreshOnVarChange:local!numberOfCustomers
A form has 5 rule inputs, as follows: 1 CDT variable 3 Text variables 1 Integer variable According to best practices, how many process variables are required in the process model's user input task?
A. 1
B. 3
C. 5
D. 6