Certs Club
See all results for ""
Home Exams
CRISC ISACA CISSP ISC2 200-301 Cisco SY0-701 CompTIA AZ-104 Microsoft AI-900 Microsoft AIGP IAPP 1Z0-1067-26 Oracle View All Exams →
Sign in Get Started

Appian Certified Senior Developer ACD201 Exam Questions

Download Exam View Entire Exam
Page: 1 / 1
Question #1 (Topic: demo questions)

You're designing an expression rule that needs to retrieve employees from a database for a given department and display their full name concatenated with their role in a list for a dropdown field. Which design approach should you recommend?

A.
Query the data to return all employees. Using a!forEach(), for each item in the list, if the employee belongs to the given department, return the employee name and role, otherwise, return a null value.
B.
Query the data to return all employees. Use wherecontains() to return the employees for the given department and use a!forEach() to return the employee name and role for each item in the list.
C.
Query the data with a filter applied to only return employees for the given department. Using a!forEach(), for each item in the list, return the employee name and role. 
Correct Answer: C
Explanation:
Querying the data with a filter to return only employees for the given department is the most efficient approach. Then, using a!forEach() to concatenate and return the employee name and role meets the dropdown display requirement without unnecessary processing.
Question #2 (Topic: demo questions)

You're developing a record view for a case management system that enables users to upload files to a specific location within an external records application. Your requirements are: In this record view, there should be a record action that allows the user to upload a file to the interface and configure the metadata (name, author, file size) before submitting. If the file is larger than 250MB, the user will be notified that the file will be uploaded overnight. Once the file has been successfully uploaded, the file will appear on the record view and the user can interact with the file. Which two pieces of user-facing information must be captured from this business process so that you can develop this record view? (Choose two.) 

A.
The location of where the file will be uploaded to in the external records application.
B.
The email of the system administrator so that an email can be sent to them if the integration fails.
C.
The time of file upload if the file is less than 250MB.  
D.
How the user wishes to interact with these files in the record view - as a grid or a series of card layouts
Correct Answer: A, D
Explanation:
You need to know the target location in the external records application to properly upload the file. Understanding how users want to interact with files (grid or card layout) is essential for designing the record view interface. 
Question #3 (Topic: demo questions)

You're developing a functionality to manage transactions for an insurance company. Each transaction can have multiple items where respective item type and item amount can be entered. The amount entered can be either negative or positive, and is a decimal data type with a precision of 8 and a scale of 2. A maximum of 10 items can be entered for a transaction. Once all the items are entered, you need to calculate and show the sum of all items' total amounts at the transaction level. What is the best way to calculate and display the sum of all item amounts?

A.
text(sum(ri!items.amount),"00.00")
B.
fixed(sum(ri!items.amount),2,false())
C.
round(sum(ri!items.amount),2)
Correct Answer: B
Explanation:
fixed(sum(ri!items.amount),2,false()) is the best option because it returns the sum as a text value formatted to exactly two decimal places, which is ideal for currency or financial amounts. This ensures the total displays correctly as a string, maintaining precision and formatting for both positive and negative values.
Download Exam
Page: 1 / 1
Next Page