Weekend Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: pass65

ACD201 Appian Senior Developer Questions and Answers

Questions 4

You're designing a report to show the total number of cases per month grouped by region. A synced record exists for the data source.

Which design pattern is most appropriate in this case?

Options:

A.

Configure a!columnChartFieid() using a!columnChartConfig() with the case creation date as the primaryGrouping and the region as the secondaryGrouping.

B.

Use a!queryRecordType() with a!aggregationFieids() to group the case creation date by region into a local variable. Pass the local variable value into the data input of a!columnChartField()

C.

Configure a!pieChartFieid() using a!pieChartConfig() with the case creation date as the primaryGrouping and the region as the secondaryGrouping.

Buy Now
Questions 5

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?

Options:

A.

Use a!queryRecordType() With a filter on the task id, with fields specified to return recordType!Task.name and recordType!Task.parentTask.name.

B.

Create a sync-time custom record field on the Task record called parentName. Specify this field to return in the query field selection.

C.

Use a!queryRecordType() filtered on the task id once to return the task name and parent task ID. Query the record again to return the parent task name.

Buy Now
Questions 6

Which two items are configured in the Admin Console when you create a web API? (Choose two.)

Options:

A.

API Key

B.

Access Control Policies

C.

Service Account

D.

LDAP Authentication

Buy Now
Questions 7

You're configuring Health Check settings under the Admin Console.

Which section would you find the setting to indicate that the Health Check will run on a Production Environment?

Options:

A.

General

B.

Scheduling

C.

Automatic Upload

Buy Now
Questions 8

You need to configure a process model that runs every day at 10:00 AM. The process should start only at the specified time even when a newer version of the process model is published.

A Boolean type constant needs to be configured in the process model. The intended flow of the process should be executed only when the constant is True.

Which three steps should you perform? (Choose three.)

Options:

A.

Add an expression-based condition in the start node timer event to check for the constant to be True.

B.

Add a timer event in the start node.

C.

Add a timer event just after the start node to check for the specific time.

D.

Add a XOR Gateway just after the start node to check for the constant to be True.

E.

Add an expression-based condition in the start node timer event to check for the specific time.

Buy Now
Questions 9

An insurance application has a dashboard in which all the cases with "Accident" case type and "Health Insurance" insurance type are displayed to the user, using the following query:

ACD201 Question 9

You need to update the query entity to display all the cases that are "Accident" case type and "Health Insurance" insurance type, or created in the last ten days.

What is the right configuration for the logical expression?

A)

ACD201 Question 9

B)

ACD201 Question 9

C)

ACD201 Question 9

Options:

A.

Option A

B.

Option B

C.

Option C

Buy Now
Questions 10

What are two advantages of database normalization? (Choose two.)

Options:

A.

Enforcing data integrity.

B.

Simplifying query statements to read data.

C.

Minimizing the number of tables that need to be created.

D.

Minimizing data redundancy.

Buy Now
Questions 11

You need to implement a requirement where a third-party system starts a process in Appian. The third-party system can invoke a service only through Web Services Description Language (WSDL).

What should you do to start the process in Appian?

Options:

A.

Create a default WSDL URL using process model UUID.

B.

Create a custom plug-in.

C.

Expose process model as a web service.

Buy Now
Questions 12

A local variable is reevaluated every time a form loads and you notice subsequent slow performance of the form.

Which two steps could you perform to optimize this? (Choose two.)

Options:

A.

Create a local variable inside with () for faster reevaluation.

B.

Ensure the local variable is refreshed after a specified interval, and nor refreshed when referenced variable are changed.

C.

Avoid executing queries every time a form reevaluates.

D.

Ensure the local variable only updates when a referenced variable is modified or when it's being updated in the saveInto parameter of a component.

Buy Now
Questions 13

You need to connect to an external system using OAuth 2.0: SAML Bearer Assertion Flow authentication type, which requests access to an API on of a signed in user.

This standard has several steps involved with the SAML Bearer Assertion Flow.

Which two steps should you perform to connect to the external system? (Choose two.)

Options:

A.

Use an a!authorizationLink() on the relevant interface.

B.

Confiqure SAML for sinqle siqn-on (SSO).

C.

Generate a service account key in third-party systems.

D.

Register the connection in the third-party system

Buy Now
Questions 14

An application consists of a record type with sync enabled. This record type is used as a source to create a read-only grid.

A field "Number of days since created" is configured in the interface and a logic is implemented to calculate the number of days since a record is created in the application.

You need to implement sorting on this field.

What should you do?

Options:

A.

Sorting is not possible on custom record type fields. Instead, create a view with a custom field and use the field from the view for sorting.

B.

Create a custom record type field and use it in the sorting configuration.

C.

Add sortField: "Number of days since created" configuration for the gridColumn that needs to be sorted.

Buy Now
Questions 15

You receive a warning about approaching the 2,000,000 row limit with synced records in your Production environment.

What are two ways to efficiently address this warning to prevent reaching the limit? (Choose two.)

Options:

A.

Design the process to write data in batches of 1,000.

B.

Disable data sync immediately to prevent user facing-front end issues.

C.

Keep only necessary data and plan to move the archived data to an audit table in a longer run.

D.

Apply one or more source filters to limit the number of rows synced in Agpian.

Buy Now
Questions 16

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.)

Options:

A.

Data transformation is performed inside the interface rather than delegated to the source system.

B.

Multiple local variables hold duplicate data.

C.

The load variable has a web service response as JSON.

D.

Local variables are set to refresh every five minutes.

Buy Now
Questions 17

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?

Options:

A.

Two tables:

Review with columns id, statusId, comment, user

Ref Status with columns id, value

B.

Two tables:

Review with columns id, statusId, comment, user1, user2, user3

Ref Status with columns id, value

C.

Three tables:

Review to store id, statusId, comment

Ref Status with columns id, value

Review User with columns id, reviewId, user

Buy Now
Questions 18

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.)

Options:

A.

Ensure that the entire process is activity-chained so that the person entering the transaction knows when the process is completed.

B.

Create the two POST APIs as asynchronous subprocesses.

C.

Create the two POST APIs as synchronous subprocesses.

D.

Add a terminate process node to the end of the process.

Buy Now
Questions 19

Match each action you want to perform to the appropriate log type.

Each log type will be used once or not at all. To change your responses, you may deselect your

response by clicking the blank space at the top of the selection list.

ACD201 Question 19

Options:

Buy Now
Questions 20

Your client wants to configure user authentication using single sign-on (SSO) in their cloud environment.

Which two authentication types should you use to support this requirement? (Choose two.)

Options:

A.

PIEE user authentication

B.

LDAP authentication

C.

OpenID Connect authentication

D.

Appian authentication

Buy Now
Questions 21

Your client wants their customers to be able to schedule appointments directly from their website without going to an Appian user environment.

You need to build an embedded interface to be added to your client's web page. The style of the embedded interface should be consistent with the host web page.

Which three custom styling options can be configured in the Themes section of embedded interfaces? (Choose three.)

Options:

A.

Two or three column layout

B.

Page background color

C.

Asymmetrical layout

D.

Font Family

E.

Web font stylesheet URL

Buy Now
Questions 22

You need to select a plug-in to meet a specific requirement and several plug-ins can do the job.

What are three key factors to consider? (Choose three.)

Options:

A.

What are the limitations of the plug-in?

B.

What are the compatible Appian versions?

C.

Who is the creator of the plug-in?

D.

Is the plug-in approved for use in the Cloud?

E.

Is the plug-in open source or proprietary?

F.

What is the size of the plug-in?

Buy Now
Questions 23

Match each authentication type to the correct authentication characteristic description.

Note: Each description will be used once. To change your responses, you may deselect your response by clicking the blank space at the top of the selection list.

ACD201 Question 23

Options:

Buy Now
Questions 24

In reviewing the process model metrics of your application, you notice a process model with a completion rate of only 10%.

What are two possible reasons for this low completion rate? (Choose two.)

Options:

A.

There are a significant number of instances that are experiencing process errors, which are not being handled by the production support team.

B.

The process contains at least one User Input Task with no exceptions or escalations, and users do not complete the task.

C.

There are a high number of smart service nodes configured in the process model.

D.

The days configured for archival or deletion is significantly higher than the other process models in your application.

Buy Now
Questions 25

You're the administrator of your insurance company’s case management system. You need to limit insurance agents to only those clients to which they have been assigned.

Which two statements must be true for one way to configure Record-Level security for the Customer record? (Choose two.)

Options:

A.

Record-level security means agents must have permission to view the record type and permission to edit the records.

B.

A new record-level security rule should be created using the Users found in fields option to specify that if a user is found in the "assignedAgent" field (which is a type User), then they can see their cases.

C.

Data sync should be enabled.

D.

A condition should be added to the record-level security rule to specify which cases specifically named agents can access.

Buy Now
Questions 26

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?

Options:

A.

Use an integration to achieve interaction with the embedded site while displaying information in the Appian out-of-the-box Web Content Component. That way you can refresh for updates and interact with the site.

B.

Use the Appian out-of-the-box Web Content Component. It can display content from a URL and provide both additional inputs, or receive updates as the user interacts with the embedded site.

C.

Use a component plug-in to achieve interaction with the embedded site, because this use case requires input-output or event parameters.

Buy Now
Questions 27

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?

Options:

A.

text(sum(ri!items.amount),"00.00")

B.

fixed(sum(ri!items.amount),2,false())

C.

round(sum(ri!items.amount),2)

Buy Now
Questions 28

You're conducting a design review.

You identify slow-performing expression rules querying a specific data store, and need to understand the "number of operations against data stores."

Which metric from the data_store_details.csv file is helpful to you?

Options:

A.

Execute Count

B.

Query Count

C.

TCCCotal Count

Buy Now
Questions 29

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.)

Options:

A.

Save the string output directly to the data structure to be written to the database.

B.

Configure the process to delete previously completed or cancelled instances.

C.

Ensure that all process variables have the option "Hidden" deselected.

D.

Evaluate each step in a separate script task and save the output to a process variable.

Buy Now
Exam Code: ACD201
Exam Name: Appian Senior Developer
Last Update: Sep 13, 2025
Questions: 99

PDF + Testing Engine

$63.52  $181.49

Testing Engine

$50.57  $144.49
buy now ACD201 testing engine

PDF (Q&A)

$43.57  $124.49
buy now ACD201 pdf