Pre-Summer Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

ACD101 Questions and Answers

Question # 6

You have a Custom Data Type (CDT), ABC_book, with a constant that refers to its data store entity, ABC_DSE_BOOK.

You need to write a query filter for all ABC_book items whose title contains “Guide”.

Which code snippet accomplishes this goal?

A)

B)

C)

A.

Option A

B.

Option B

C.

Option C

Full Access
Question # 7

Which statement regarding the use of rule inputs for expression rules is true?

A.

Only basic data types should be used for rule inputs. Custom Data Types (CDTs) or records should always be queried within the expression rule rather than passed in via rule input.

B.

The data type for rule inputs should be set only for Custom Data Types (CDTs).

C.

If the value passed in via rule input may be a list of numbers, the rule input must be configured as an “Array”.

Full Access
Question # 8

What is the Appian Dev environment used for?

A.

Making updates to the app.

B.

Providing end users access to the finished product.

C.

User acceptance testing.

Full Access
Question # 9

Which statement about editing interfaces and expression rules is true?

A.

Once created, both expression rules and interfaces cannot be renamed.

B.

Expression rules containing more than 4,000 characters should be converted to interfaces.

C.

When editing an expression rule, interface components do not render for display.

Full Access
Question # 10

While testing, the process consumes at least 2000 AMU of process memory for each instance.

What are four ways to reduce the overall memory footprint of your process instances? (Choose four.)

A.

Reduce your process’ delete and archival interval under Data Management > Automatic Process Clean-Up. Most Voted

B.

Split the process into subprocesses so that only a part of the overall process is active. Most Voted

C.

Start the process with the memory optimizer option toggled “On”.

D.

Reduce the number of process variables. Most Voted

E.

Do not store large data chunks like text strings in process variables. Most Voted

F.

Compress text into a .ZIP file before storing them in process variables.

Full Access
Question # 11

Actual exam question from Appian ' s ACD101

Question #: 15

Topic #: 1

[All ACD101 Questions]

What is the expected output?

A.

Maria

B.

0

C.

1

Full Access
Question # 12

The “Create Vehicle” process model writes a new vehicle to the database using the Write to Data Store Entity smart service. You provide a null value for the primary key, and the database manages the primary key id as an auto-incremented integer.

You need the value of the primary key for the new vehicle to use later in the process model.

How should you get the value?

A.

Reference AC!StoredValues in the Outputs tab of the Write to Data Store Entity node.

B.

Add a script task to query for the most recently updated vehicle using loggedInUser().

C.

Dot notate into the ID field of the process variable written to the database, which is automatically updated by the Write to Data Store Entity smart service.

Full Access
Question # 13

You are configuring an employee onboarding User Input Task that will be assigned to the human resources group.

Based on the default behavior for task assignments, which statement is valid?

A.

Multiple users can accept the task at the same time up until the point that the first user completes it.

B.

For each user in the group, a task is generated and assigned to them to complete.

C.

One user in the group can accept the task for themselves and complete it.

Full Access
Question # 14

You created an expression rule that was deployed to production on January 12, 2022.

The object has “form type” as a rule input, as well as several other rule inputs for characteristics describing the logged in user. Given values for these inputs, the rule returns a set of form instructions for the specified type of form as applicable to the logged in user.

What is the most important action to take with regards to the object description?

A.

Set an object description that reads: “Returns a set of form instructions to display, given the type of form and characteristics of the logged in user”.

B.

Save a rule input of type ‘text’ for the object called ‘objectDescription’, and set a text value that generally describes the object such that other developers could quickly gain understanding of the object’s purpose.

C.

Set an object description that includes any notes you may need if you were to become responsible for providing Production Support on that area of the application in the future. You should also include “BP – 1/12/2022 – Created” somewhere in the description.

Full Access
Question # 15

You receive the following error message after creating a dropdown field:

What could be the problem?

A.

The choiceLabels and choiceValues datatypes do not match.

B.

The choiceValues has too few values.

C.

The choiceLabels have too few labels.

Full Access
Question # 16

Which Appian feature is used to automate repetitive manual tasks such as extracting data from a system for which there is no API?

A.

RPA

B.

Process Mining

C.

Connected Systems

Full Access
Question # 17

You need to configure the database to have a one-to-many relationship between ACME_ORDER and ACME_ORDER_ITEM.

What is a valid method for configuring this relationship in the database?

A.

Add a new field “ORDER_ID” on the ACME_ORDER_ITEM table and set the field as a foreign key to the ACME_ORDER entry.

B.

Add a new field “ORDER_ITEM_ID” on the ACME_ORDER table and set the field as a foreign key of the ACME_ORDER_ITEM entry.

C.

Add a new field “ORDER ITEM_ID” on the ACME_ORDER table and set the field as a second primary key of the ACME_ORDER_ITEM entry.

Full Access
Question # 18

What is the out-of-the-box behavior that indicates a text input field is required?

A.

The size of the label font increases to show significance.

B.

An asterisk (*) appears at the end of the label to notify the user that the field must have a rule.

C.

The label font of the field goes from normal text to bold in order to draw attention.

Full Access
Question # 19

How do you pass information from a process model to a form?

A.

Configure the rule inputs table on the Forms/Process Start Form tab to correctly refer to the values from your process model.

B.

Configure the interface so that the local variables refer directly to values in the ac! (activity class) domain.

C.

Configure the process properties on the Data Management tab to correctly refer to your form rule inputs.

Full Access
Question # 20

Which two scenarios are ideal for using Appian Portals? (Choose two.)

A.

A manager wants to obtain a view of their team ' s performance.

B.

A retail customer wants to conduct a public survey for their recently launched product.

C.

An employee who does not have an account wants to register for their company ' s vehicle fleet a management system.

D.

A user needs to submit support requests when they are using their mobile device in areas with bad network coverage.

Full Access
Question # 21

You are working on an existing process model with three process variables:

1. pv!vehicleID (integer)

2. pv!vehicle(Custom Data Type (CDT)

3. pv!dealershipName (text)

You have a script task with an output variable, defined as rule!VIM_getVehicle(vehicleID: pv!vehicleID). The result is saved to pv!vehicle.

The rule VIM_getDealershipName() accepts the dealership ID, which is a field on the vehicle CDT, and returns the dealership name.

What should you update in the process model to set the value for pv!dealershipName?

A.

Move the existing output variable to the inputs tab, and name it “vehicle”. Add output variable defined as rule!VIM_getDealershipName(ac!vehicle.dealershipId) and save that value to pv!dealershipName.

B.

Add another output variable defined as rule!VIM_getDealershipName(pv!vehicle.dealershipId) and save that value to pv!dealershipName.

C.

Add a new script task, and add an input variable defined as rule!VIM_getDealershipName(ac!vehicle.dealershipName) that saves into pv!dealershipName.

Full Access
Question # 22

You are creating a new customer onboarding application. Documents are required from customers for verification and onboarding purposes. You need to store these documents within Appian.

Which two areas in Appian should you configure? (Choose two.)

A.

Knowledge Center

B.

Decision Object

C.

Folder

D.

Feed

Full Access
Question # 23

How can you add test data into your rule inputs while editing an interface object?

A.

Select the Performance tab and set test values.

B.

Select the Test button and set test values.

C.

Select the Gear icon, select Properties, and set test values.

Full Access
Question # 24

An interface references an expression rule.

What are the relationships between these objects?

A.

Dependents and Reliants

B.

Dependents and Precedents

C.

Inheritance and Association

Full Access
Question # 25

You created and published a new process model.

The process model has a start form with two synchronous subprocesses with 40 and 66 nodes each. All nodes are chained from the start node through the subprocesses to the end node. After the tasks and subprocesses, there is a second User Input Task in which the user can confirm the entries and add a comment.

When testing as a normal Acme business user, you see that the confirmation screen is not shown to you.

What might be the reason for this behavior?

A.

The maximum number of activity chained nodes is exceeded and breaks.

B.

The second User Input Task is assigned to the process initiator.

C.

The second User Input Task is assigned to the Acme business user group.

Full Access
Question # 26

Which condition must be true in order to establish record type relationships?

A.

The record types must have many-to-many relationships.

B.

All record types in the relationship must be backed by an integration.

C.

Data sync must be enabled for the record types.

Full Access
Question # 27

You are reviewing a timesheet submission on a form.

The buttons on the form are: “Cancel”, “Deny”, and “Approve”. Most of the time, users will approve the timesheet.

According to Appian best practices, which button styling is most appropriate on the button labelled “Approve”?

A.

Primary

B.

Secondary

C.

Destructive

Full Access
Question # 28

Which step can be critical in passing information from a form back to a process model?

A.

Configure the Data Management tab.

B.

Configure the activity class parameters of a Write to Data Store Entity node, a

C.

Configure inputs on the Data tab of a User Input Task.

Full Access
Question # 29

Review the following expression rule:

ri!name is defined as " Maria " .

ri!directory is defined as the following:

What is the expected output?

A.

Maria

B.

0

C.

1

Full Access
Question # 30

Review the following expression rule:

The updatedDate is of type “Date”, and current datetime is 01/01/2023 5:00 PM GMT+00:00.

What is the output of this expression if the value of updatedDate was saved as today() one(1) hour ago?

A.

Updated Today

B.

Updated 01/01/2023

C.

Updated 01/01/2023 4:00 PM GMT+00:00

Full Access
Question # 31

-

You need to implement a new column on an existing database table. This table, its Custom Data Types (CDT), and data store entity are currently in use by an Appian application.

How should you implement this change?

Note: To answer, move all steps from the Options list to the Answer List area and arrange them in the correct order.

Full Access
Question # 32

You need to view a record type relationship diagram.

Where should you look in the record type?

A.

List

B.

Views

C.

Data model

Full Access
Question # 33

You need to start a process using an email trigger.

How should you configure this process model using the Process Model Properties dialog?

A.

Go to File > Properties > Alerts. Configure the Custom Alert settings.

B.

Go to File > Properties Set the proper Process Display Name

C.

Go to File > Properties. Select the Public Events checkbox to allow anyone to fire triggers.

Full Access
Question # 34

What is an Appian best practice for calling interface rules on your interface?

A.

Call the interface rule on a rule input.

B.

Use keyword syntax.

C.

Always use consistent ordering of rule parameters.

Full Access
Question # 35

You are creating a large, complex interface

Which statement describes a best practice for strategizing code organization?

A.

Create individual interface objects for each chunk of code that is logically grouped, especially for those that may be reused in other areas of the application.

B.

Create only one interface object per developer assigned to the feature. This balances the performance cost of calling additional interface objects with the need to prevent developers from overwriting each other.

C.

Since the components are related, all code should be centralized in a single interface object. This minimizes the performance cost incurred by Appian calling multiple interface objects.

Full Access
Question # 36

Which three of the following are valid page types in a site? (Choose three.)

A.

Record List

B.

Tempo

C.

News Feed

D.

Interface

E.

Action

Full Access