Here you can find all the free questions related with Appian Certified Associate Developer (ACD101) exam. You can also find on this page links to recently updated premium files with which you can practice for actual Appian Certified Associate Developer Exam. These premium versions are provided as ACD101 exam practice tests, both as desktop software and browser based application, you can use whatever suits your style. Feel free to try the Appian Certified Associate Developer Exam premium files for free, Good luck with your Appian Certified Associate Developer Exam.
Question No: 1
MultipleChoice
You received a support ticket where the user claims that nothing happens when they click the button to complete a task. You confirm that the user is assigned to the task.
What is a possible reason for this problem?
Options
Answer CExplanation
If a user claims that nothing happens when they click a button to complete a task, a possible reason could be that the button was not configured to submit the form. This configuration is essential for triggering the form submission action, which in turn can complete the task or initiate further processes. Without this setup, clicking the button will not result in any action.
Reference:
Appian Documentation: Configuring Buttons in Interfaces
Question No: 2
MultipleChoice
Review the following expression rule:
union(ri!fruit, ri!vegetables)
The rule inputs are configured as text arrays.
What is the expected output?
Options
Answer CExplanation
The union() function in Appian combines the elements of two or more arrays into a single array, removing any duplicate values. Given that the rule inputs ri!fruit and ri!vegetables are configured as text arrays, the expected output of union(ri!fruit, ri!vegetables) would be an array containing all unique items from both ri!fruit and ri!vegetables, with any duplicates removed. This function is useful for combining lists without repetition, ensuring a clean, unique set of elements.
Reference: Appian Documentation - Expression Functions