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

Appian ACD200 - Appian Certified Senior Developer

Page: 1 / 3
Total 77 questions

You are creating a table to store book information for a library. The boot has a reference number (ISBN_ID), as well as a unique identifier (BOOK_ID).

For the CDT to be created, which data type should you choose for the BOOK_ID? (Choose the best answer.)

A.

Number (Integer)

B.

Number (Decimal)

C.

Date

D.

Boolean

You are referencing and using arrays of a CDT (Custom Data Type).

Which two statements are true? (Choose two.)

A.

Other Appian functions can be used within the square brackets “[]” when using dot notation to return specific data from the array.

B.

There is no difference between using “dot notation” and the index() function.

C.

An array of integers can be passed as the second parameter to the index() function to return the data at those position in the array.

D.

The function where contains can act on operands of different types.

You need to create a service account for a consumer to access the Appian Web API.

Which user type should be created?

A.

Initiator

B.

System Administrator

C.

Basic User

D.

Editor

A user is uploading a document in the Appian environment and wants to restrict the uploading of documents without extensions.

How can this be done at the environment level?

A.

Enable File Upload > Block files without an extension, under Administration Console.

B.

Document can be uploaded but cannot be restricted.

C.

Configure Validation rules wherever required.

D.

No actions are required from the developer; Appian auto-validates these documents.

You are presenting data through data visualization.

Match the chart types to the data they are best suited to represent. Each answer will be used once.

Note: To change your responses, you may deselect your response by clicking the blank space at the top of the selection list.

You want to generate an email body which varies from one Appian environment to another. For instance, between DEV and TEST.

According to Appian best practices, how should you define the environment name? (Choose the best answer.)

A.

Create an expression rule and update its value post-deployment.

B.

Create an environment-specific constant.

C.

Create a constant and update its value post-deployment.

D.

Create a stored procedure.

During a sprint retrospective meeting, you need to get the team thinking about the outcomes of the last sprint.

Which two basic questions should you ask? (Choose two.)

A.

What didn’t go well and can be improved?

B.

What are the blockers?

C.

Who did well in this sprint?

D.

What went well?

Which two statements about the a!queryEntity() function are true? (Choose two.)

A.

The queries defined using the query parameter are not limited in how long they wait to return results.

B.

The queries defined using the query parameter return a constrained subset of matching data records by default.

C.

The entity value must be given as a constant of type Data Store Entity.

D.

Setting the fetchTotalCount parameter to False can improve the performance of the rule.

During the design review, you identified slow-operating expression rules querying a specific data store.

Which metric from the data_store_details.csv file will help you understand the “number of operations against data store?” (Choose the best answer.)

A.

Transform Count

B.

Query Count

C.

Total Count

D.

Execute Count

You need to build a process model that transforms a large data set.

Which two things should you ensure to include in your process model? (Choose two.)

A.

A subprocess is called using “Multiple Node Instances (MNI)” to perform the transformation on each item in the data set.

B.

An XOR gateway is added before the transformation node, to check for empty/null values.

C.

A loop is created within the process model that increments on each iteration, updating that particular row in the data set.

D.

The transformation is applied with an expression rule that takes the data set as an input, and loops through the dataset using a looping function, such as foreach.