ExamGecko
Home Home / Blue Prism / AD01

Blue Prism AD01 Practice Test - Questions Answers

Question list
Search
Search

List of questions

Search

Related questions











Examine the extract below taken from a Blue Prism Process:

The Outputs tab from the Get Next Item stage is provided below:

What is the correct expression for the 'Item Returned?' Decision stage, to check if a Work Queue item was returned?

A.
Item ID < > ''
A.
Item ID < > ''
Answers
B.
[Customer Data] < > ''
B.
[Customer Data] < > ''
Answers
C.
[Customer Data] < > NULL
C.
[Customer Data] < > NULL
Answers
D.
([Customer Data].Rows) > 0
D.
([Customer Data].Rows) > 0
Answers
E.
[Item ID] < > ''
E.
[Item ID] < > ''
Answers
Suggested answer: E

Explanation:

The 'Item Returned?' Decision stage needs to check if a Work Queue item was returned.

The correct check for this is if the Item ID is not an empty string.

The expressions involving Customer Data are not appropriate for this specific check.

Therefore, the correct expression is [Item ID] <> ''.

Feel free to ask if you have any more questions or need further assistance!

What is the maximum number of Start stages that a Process sub-page can contain?

A.
1
A.
1
Answers
B.
Unlimited
B.
Unlimited
Answers
C.
10
C.
10
Answers
D.
999
D.
999
Answers
Suggested answer: A

Examine the following recover flow taken from a Blue Prism Process:

The 'Exception Detail' data item has no initial value and has a data type of text.

The Calculation stage 'Save Exception Detail' will output the current exception detail to the 'Exception Detail' data item.

What expression would you use in the 'Save Exception Detail' stage to achieve this?

A.
A.
Answers
Suggested answer: A

Which of the following indicates a case in a Work Queue is an exception?

B)

C)

D)

A.
Option A
A.
Option A
Answers
B.
Option B
B.
Option B
Answers
C.
Option C
C.
Option C
Answers
D.
Option D
D.
Option D
Answers
Suggested answer: D

Which of the following activities can you perform in Blue Prism Control Room?

(select all items which apply)

A.
Set the Maximum Attempts parameter for the Work Queue
A.
Set the Maximum Attempts parameter for the Work Queue
Answers
B.
Rename a Work Queue
B.
Rename a Work Queue
Answers
C.
Delete items from a Work Queue
C.
Delete items from a Work Queue
Answers
D.
Refresh Work Queue data
D.
Refresh Work Queue data
Answers
E.
Create a Work Queue
E.
Create a Work Queue
Answers
F.
Encrypt a Work Queue
F.
Encrypt a Work Queue
Answers
Suggested answer: A, C, D, F

Explanation:

Understanding Control Room Functions:

The Control Room in Blue Prism is used to manage and monitor running processes and manage work queues.

Capabilities of Control Room:

Set the Maximum Attempts parameter for the Work Queue (Option A): This is a parameter setting available in the Control Room for work queues.

Rename a Work Queue (Option B): Work queues cannot be renamed from the Control Room.

Delete items from a Work Queue (Option C): Items in a work queue can be deleted from the Control Room.

Refresh Work Queue data (Option D): The Control Room allows refreshing the data displayed for work queues.

Create a Work Queue (Option E): Work queues are created in the System Manager, not in the Control Room.

Encrypt a Work Queue (Option F): This can be managed from the Control Room to ensure data security.

Conclusion:

The activities you can perform in Blue Prism Control Room are:

A . Set the Maximum Attempts parameter for the Work Queue

C . Delete items from a Work Queue

D . Refresh Work Queue data

F . Encrypt a Work Queue

Blue Prism Developer Documentation: Control Room Functions

Blue Prism Training Material on Work Queue Management

Which of the following Work Queue icons indicates a case currently being worked?

A)

B)

C)

D)

A.
Option A
A.
Option A
Answers
B.
Option B
B.
Option B
Answers
C.
Option C
C.
Option C
Answers
D.
Option D
D.
Option D
Answers
Suggested answer: D

Explanation:

Understanding Work Queue Icons in Blue Prism:

Work queue icons in Blue Prism provide a visual indication of the status of cases in the queue.

Each icon represents a different state of a work queue item.

Icons and Their Meanings:

Option A (Flag): This typically indicates a flagged item, often used to mark items that need special attention or have been deferred.

Option B (Lock): This represents a locked item, indicating that the item is locked and cannot be processed.

Option C (Checkmark): This indicates that the item has been completed successfully.

Option D (Three Dots): This icon represents a case currently being worked on by a digital worker.

Conclusion:

The icon that indicates a case currently being worked is Option D (three dots).

Blue Prism Developer Documentation: Work Queue Icons and Status Indicators

Blue Prism Training Material on Work Queue Management

Which of the following Work Queue icons indicates a case is waiting to be worked?

A)

B)

C)

D)

A.
Option A
A.
Option A
Answers
B.
Option B
B.
Option B
Answers
C.
Option C
C.
Option C
Answers
D.
Option D
D.
Option D
Answers
Suggested answer: B

Explanation:

Understanding Work Queue Icons in Blue Prism:

Each work queue icon in Blue Prism represents a different status of a work queue item.

Icons and Their Meanings:

Option A (Checkmark): This indicates that the item has been completed successfully.

Option B (Flag): This icon typically represents an item that is waiting to be worked on or is flagged for attention.

Option C (Lock): This indicates that the item is locked and cannot be processed.

Option D (Three Dots): This icon represents a case that is currently being worked on by a digital worker.

Conclusion:

The icon that indicates a case is waiting to be worked is Option B (flag).

Blue Prism Developer Documentation: Work Queue Icons and Status Indicators

Blue Prism Training Material on Work Queue Management

Examine the following Blue Prism Process diagram:

The 'New Date' data item is a date data type and has no initial value.

The Calculation stage Properties window is displayed below:

What will happen when you execute the 'Create New Date' stage?

A.
1 year will be added to todays date and the result stored in the New Date' data item
A.
1 year will be added to todays date and the result stored in the New Date' data item
Answers
B.
1 month will be added to today's date and the result stored in the 'New Date' data item
B.
1 month will be added to today's date and the result stored in the 'New Date' data item
Answers
C.
1 week will be added to today's date and the result stored in the 'New Date' data item
C.
1 week will be added to today's date and the result stored in the 'New Date' data item
Answers
D.
The 'New Dale' data item value will contain todays date
D.
The 'New Dale' data item value will contain todays date
Answers
Suggested answer: A

Explanation:

Understanding the Calculation Stage:

The calculation stage in Blue Prism is used to perform calculations and store the result in a specified data item.

The expression used in the calculation stage is DateAdd(0, 1, Today()).

Analyzing the DateAdd Function:

DateAdd(interval, number, date) is a function that adds a specified number of intervals to a given date.

The first parameter (interval) specifies the type of interval to add. In this case, it is 0.

The second parameter (number) specifies the number of intervals to add. In this case, it is 1.

The third parameter (date) specifies the starting date. In this case, it is Today().

Interval Values in DateAdd Function:

In Blue Prism, the DateAdd function uses specific interval values:

0 for years

1 for months

2 for days

3 for hours

4 for minutes

5 for seconds

Given that the interval parameter is 0, it means that the function will add years.

Conclusion:

The DateAdd(0, 1, Today()) expression will add 1 year to today's date.

Therefore, the result will be stored in the 'New Date' data item, and the correct answer is:

A . 1 year will be added to today's date and the result stored in the 'New Date' data item.

Blue Prism Developer Documentation: Date Functions

Blue Prism Training Material on Calculation Stages and Date Manipulation

Examine the following Blue Prism Process diagram which is intended to get the date of the previous day as a date value:

The Calculation stage Properties window is provided below:

Which are the following statements about this process diagram are correct?

A.
None of these statements are correct
A.
None of these statements are correct
Answers
B.
If the 'Result Date' data item is configured as a Text data type, then a 'data type mismatch' Internal Exception will be thrown on execution of the Calculation stage
B.
If the 'Result Date' data item is configured as a Text data type, then a 'data type mismatch' Internal Exception will be thrown on execution of the Calculation stage
Answers
C.
If the 'Result Date' data item is configured as a Date data type, then the 'Result Date' data item will be set to the date of the previous day on execution of the Calculation stage
C.
If the 'Result Date' data item is configured as a Date data type, then the 'Result Date' data item will be set to the date of the previous day on execution of the Calculation stage
Answers
D.
On execution of the Calculation stage, a 'Failed to evaluate expression' Internal Exception will be thrown
D.
On execution of the Calculation stage, a 'Failed to evaluate expression' Internal Exception will be thrown
Answers
Suggested answer: C

Explanation:

Understanding the Process Diagram:

The diagram includes a calculation stage named 'Get Date of Previous Day' and a data item named 'Result Date'.

The Calculation Properties window shows the expression Yesterday() used in the calculation stage.

Analysis of the Calculation Stage:

The Yesterday() function is used to get the date of the previous day.

The result of this function is stored in the 'Result Date' data item.

Data Type Considerations:

Option A: This option is incorrect because there are correct statements regarding the process diagram.

Option B: If 'Result Date' is configured as a Text data type, a 'data type mismatch' Internal Exception will indeed be thrown because the Yesterday() function returns a date, not text.

Option C: If 'Result Date' is configured as a Date data type, the Yesterday() function will correctly set 'Result Date' to the previous day's date.

Option D: This option is incorrect because the Yesterday() function is valid and will not throw a 'Failed to evaluate expression' Internal Exception if used correctly with a date data type.

Conclusion:

The correct statement is:

C . If the 'Result Date' data item is configured as a Date data type, then the 'Result Date' data item will be set to the date of the previous day on execution of the Calculation stage.

Blue Prism Developer Documentation: Date Functions

Blue Prism Training Material on Calculation Stages and Date Manipulation

DRAG DROP

Examine the following Blue Prism Process diagram:

The purpose of this Process flow is to use the Day Month and Year data item values to create a date value, which is output to the Full Date data item

The Day' data item is a number data item and has an initial value of 25 The value of this data item is used as the day value when creating the full date. The 'Month' data item is a number data item and has an initial value of 10. The value of this data item is used as the month value when creating the full date. The 'Year' data item is a number data item and has an initial value of 2013 The value of this data item is used as the year value when creating the full date. The environment date format is dd/mm/yyyy.

To enable this Process flow to function correctly, drag and drop the items below into the placement boxes (A - E). to create the coned Blue Prism expression for the Convert to Date' calculation stage, so that the 'Full Date' data item is populated with the appropriate date, based on the Day Month and Year data items:


Question 10
Correct answer: Question 10

Explanation:

For further reference and a deeper understanding of Blue Prism expressions and functions, you can consult the official Blue Prism documentation or other authoritative resources on Blue Prism development.

Total 189 questions
Go to page: of 19