시험덤프
매달, 우리는 1000명 이상의 사람들이 시험 준비를 잘하고 시험을 잘 통과할 수 있도록 도와줍니다.
  / ACD201 덤프  / ACD201 문제 연습

Appian ACD201 시험

Appian Certified Senior Developer 온라인 연습

최종 업데이트 시간: 2026년03월09일

당신은 온라인 연습 문제를 통해 Appian ACD201 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.

시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 ACD201 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 190개의 시험 문제와 답을 포함하십시오.

 / 10

Question No : 1


What should you use to create a predefined query in a database for ease of use?

정답:
Explanation:
A database view is used to create a predefined query, making it easy to access, reuse, and join data for applications like Appian.

Question No : 2


The synced record type Customer has a one-to-many relationship with the Case record type.
You need to calculate the number of open cases for each customer.
What are two valid methods to accomplish this? (Choose two.)

정답:
Explanation:
A real-time custom field in the Customer record type can aggregate and count related open cases.
A sync-time custom record field using a!relatedRecordData() can filter and count open cases, making the count available as a synced field.

Question No : 3


You notice that a process consumes a significant amount of memory. The process involves ingesting long strings from a web service and saving them to the database using a looping approach. The string output is saved to a process variable with data type Text.
Which two options will reduce the memory usage? (Choose two.)

정답:
Explanation:
Saving the string output directly to the data structure for database writing avoids holding large text in process variables, reducing memory usage.
Deleting completed or cancelled process instances helps free up memory consumed by historical process data.

Question No : 4


You're building an application with a review workflow.
Each submission must be approved by three users who can each approve or reject their request, and leave a comment. This action changes the status of the submission to 'Approved' or 'Rejected' correspondingly, and pushes the review to the previous or next assignee.
Which data model captures the workflow requirements appropriately?

정답:
Explanation:
Using three tables - Review, Ref Status, and Review User - enables you to track each user’s approval or rejection, comments, and status changes for each review, supporting a flexible, normalized workflow for multiple reviewers.

Question No : 5


You need to configure Appian user authentication against an external directory server. The requirement is to use the same corporate logon information without single sign-on (SSO).
Which authentication type should you use?

정답:
Explanation:
LDAP authentication allows users to log in with their corporate credentials by authenticating against an external directory server, without requiring single sign-on (SSO).

Question No : 6


DRAG DROP
You're creating a process to update specific fields in a list of records and you save the updated records to the database.
You're given the following performance considerations:
- Execution time
- Process instance memory usage
- Process execution engine load balancing
Based on these performance metrics, rank the options from best to worst. Note: To answer, move all steps from the Options list to the Answer List area and arrange them in the correct ranking order (best at the top, and worst at the bottom).



정답:

Question No : 7


You need to add test cases to an existing expression rule in the system. Expression rule gives a complex data type value as an output result.
The test case should pass only when a field in the resultant data matches with a specific value mentioned.
How should you configure the test case assertion?

정답:
Explanation:
Configuring the test case assertion so that the assertion expression evaluates to True allows you to specifically check whether the desired field in the complex data type result matches the required value.

Question No : 8


You need to create a read-only grid that displays support case information. Data for the support cases is mapped to the "Case" record type with data sync enabled.
Within the record, there are fields named "createdDateTime" and "resolvedDateTime". These two fields store the timestamps for when a case is created and resolved, respectively.
The grid includes a column indicating the number of hours between when the case was created and when it was resolved. This column must be sortable within the grid.
How should you calculate the hour value that will display in the column?

정답:
Explanation:
A custom record field that evaluates in real-time and calculates the hours between "createdDateTime" and "resolvedDateTime" ensures the calculated value is available as a sortable field within the read-only grid.

Question No : 9


You're creating a point-of-sale (POS) system for a customer which can associate the items in a transaction to a customer based on a membership number. The item stock table and the customer sales record are hosted elsewhere and need to be written to via POST APIs from an Appian process model. This all occurs within a transaction process model that you're creating.
Which two steps should you perform to design your process model to improve process memory? (Choose two.)

정답:
Explanation:
Creating the POST API calls as asynchronous subprocesses allows them to run independently, reducing memory usage in the main process.
Adding a terminate process node at the end ensures the process completes and releases memory as soon as its work is finished.

Question No : 10


You need to display information for pending tasks for each individual in an application. The tasks may be for a single specific application.
Which context type should you select for the Task Report Type?

정답:
Explanation:
"Tasks attributed to user" is the correct context type, as it allows you to display pending tasks assigned to each individual in the application.

Question No : 11


You're creating a synced record type which will store read-only data from an external web service. Data in the external system is updated nightly, and the latest information must be available to users in the morning. Currently there are approximately 150,000 entries in the external system, and this number is not expected to change significantly.
There is an existing integration object and associated expression rule, which when called returns the complete dataset from the external system.
What are two configurations that you must apply to ensure that the latest and complete record set is available? (Choose two.)

정답:
Explanation:
Scheduling a nightly full sync ensures the record type is updated with the latest data after the external system refreshes.
Disabling the row limit in Source Filters allows the complete dataset to be retrieved and synced, ensuring all entries are available.

Question No : 12


The synced record Task has a self-referential relationship defined in the column parentTaskId. There is a many-to-one record relationship between the id and parentTaskId called parentTask.
For a given task ID, you need to return the task name and the parent task name.
What should you do?

정답:
Explanation:
Using a!queryRecordType() with a filter on the task ID and specifying both recordType!Task.name and recordType!Task.parentTask.name in the fields will efficiently return both the task name and its parent task name in a single query.

Question No : 13


A recent Health Check report of your application indicates an increased risk of large context size in the interfaces.
What are two possible contributors to this risk? (Choose two.)

정답:
Explanation:
Performing data transformation inside the interface can increase the amount and size of context data stored, raising context size risk.
Multiple local variables holding duplicate data unnecessarily inflate the interface's memory footprint, contributing to large context size.

Question No : 14


You're refining a story for a centralized distribution center that extends the current application by allowing inventory managers to review orders.
These orders are created through a record action that various workshops access from a shared Appian site.
Which consideration best suits this use case?

정답:
Explanation:
Identifying the personas (such as inventory managers and workshop users) ensures you can design and maintain an appropriate Appian group structure for managing access and permissions, which is critical for a centralized application accessed by multiple roles.

Question No : 15


You're developing a user input form for a financial services application.
One component of this form requires you to embed an external site (in the form of a URL) that can receive inputs from Appian and return updates as the user interacts with it.
What should you do?

정답:
Explanation:
A component plug-in is required because the standard Web Content Component in Appian only displays external sites and does not support direct two-way interaction or input/output event handling. A plug-in enables custom integration to allow input and receive updates as users interact with the embedded site.

 / 10
Appian