Your organization requires a process to be initiated via an Appian web API.
Which HTTP request methods should the API use?
A. HEAD
B. GET
C. POST
D. CONNECT
The IT stakeholder wants to understand which processes have the highest footprint.
What are the two places to get information on process model memory usage? (Choose two.)
A. Administration Console
B. Process monitoring tab
C. Appian Health Check report
D. Application server log file
You are referencing and using arrays of a CDT (Custom Data Type).
Which two statements are true? (Choose two.)
A. Other Appian functions can be used within the square brackets "[]" when using dot notation to return specific data from the array.
B. There is no difference between using "dot notation" and the index() function.
C. An array of integers can be passed as the second parameter to the index() function to return the data at those position in the array.
D. The function where contains can act on operands of different types.
There is a need to relate two entities in the data structure: Employee and Skill.
Employees can have multiple skills, and a single skill can relate to multiple employees.
What kind of relationship would these entities have, and what is the minimum number of tables required to implement the design, according to Appian best practices? (Choose the best answer.)
A. One-to-many; 2 tables
B. Many-to-many; 2 tables
C. Many-to-one; 2 tables
D. Many-to-many; 3 tables
Your table contains several indexes.
Which two statements regarding indexes are correct? (Choose two.)
A. Indexes increase the performance of Read operations.
B. Indexes increase the performance of Write operations.
C. Indexes decrease the performance of Write operations.
D. Indexes decrease he performance of Read operations.
You are creating an ERD that models the data for a college and includes a Many-to-Many relationship, Student-to-Class, where a student can be enrolled in multiple classes, and a class can enroll multiple students.
How can you handle this relationship so that it can be supported in Appian and remain in at least First Normal Form? (Choose the best answer.)
A. A joining table can be used to hold instances of Student/Class relationships.
B. The Student table should have a Class field to hold an array of Class IDs.
C. The Class table should have a Student field to hold an array of Student IDs.
D. It cannot be done, because Appian CDTs cannot handle Many-to Many relationships.
You are using pie charts.
What is correct representation of Appian best practices? (Choose the best answer.)
A. Use as many slices as possible.
B. Pie charts should only be used to represent data that can be placed into identical categories.
C. Use pie charts to show proportional data.
D. Try to use multiple pie charts when comparing multiple sets of data.
You are tasked with configuring a process model to store the result of an expression rule for every item in a list.
Which process model design has the lowest memory footprint?
A. Run MNI over a script task for each item in the list.
B. Call a sub-process for each item in the list.
C. Configure a script task to use a!foreach to iterate over each item in the list.
D. Create a loop of smart service nodes in the process model and execute it for each item in the list.
Users are reporting that a task on a newly-launched process in Production is slow to respond to user input.
What is the likely cause? (Choose the best answer.)
A. The process uses too many hidden variables.
B. The task is assigned to too many users.
C. There are too many SAIL components on the task.
D. Exception timers on tasks are set to values that are too low.
You have been asked to produce a Tempo report, with the following requirements:
The report should display in Appian.
The data is held in a business database, but performance in Appian is a key requirement. Which three actions can you take to minimize the performance impact of your report? (Choose three.)
A. Display the report as a task report on the Tasks tab.
B. Limit the number of series values and categories in the report.
C. Use local variables in your report interface to avoid redundant database queries.
D. Use the query process analytics function to retrieve the data.
E. Perform aggregation in the database using a view prior to reading the data into Appian.