ExamGecko
Home Home / Blue Prism / ASDEV01

Blue Prism ASDEV01 Practice Test - Questions Answers, Page 5

Question list
Search
Search

List of questions

Search

Related questions











Which of the following activities can be performed via the Queues area of Blue Prism Control Room*?

(Select all items which apply)

A.
Update a Work Queue item to Complete
A.
Update a Work Queue item to Complete
Answers
B.
Review the Work Queue Status
B.
Review the Work Queue Status
Answers
C.
Update an Work Queue item to Exception
C.
Update an Work Queue item to Exception
Answers
D.
Lock a Work Queue item
D.
Lock a Work Queue item
Answers
E.
Unlock a Work Queue item
E.
Unlock a Work Queue item
Answers
F.
Change a Work Queue item 'Deferral Date'
F.
Change a Work Queue item 'Deferral Date'
Answers
Suggested answer: A, B, C, E, F

Explanation:

These are the correct activities that can be performed via the Queues area of Blue Prism Control Room. They allow the user to monitor and manage the work queue items manually or based on business rules. The other option is incorrect because a work queue item can only be locked by the process that is processing it.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 16)

Which of the following are benefits of using a Blue Prism Work Queue in a Process design?

(Select all items which apply)

A.
Provides data which can be used for effective reporting about items which have been processed
A.
Provides data which can be used for effective reporting about items which have been processed
Answers
B.
All Work Queue data is available to view by all Blue Prism users through Control Room
B.
All Work Queue data is available to view by all Blue Prism users through Control Room
Answers
C.
Enables robust audit information about items which have been processed
C.
Enables robust audit information about items which have been processed
Answers
D.
Enables secure storage and management of items being processed
D.
Enables secure storage and management of items being processed
Answers
E.
Enables the same Work Queue item to be processed by the multiple Digital Workers at the same time
E.
Enables the same Work Queue item to be processed by the multiple Digital Workers at the same time
Answers
Suggested answer: A, C, D

Explanation:

These are the correct benefits of using a Blue Prism work queue in a process design. They allow the process to handle large volumes of data efficiently and securely, and provide useful information for analysis and improvement. The other options are incorrect because work queue data is not available to all users, and work queue items cannot be processed by multiple digital workers at the same time.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 16)

Examine the following Blue Prism Process diagram:

The initial values of the data items are displayed in the diagram above All 3 data items are configured as Number

The 'Perform Calculation' stage Properties window is displayed below:

When this diagram is run through the the End stage, what will the current value of the Z data item be?

A.
([X] + [Y])* [X]
A.
([X] + [Y])* [X]
Answers
B.
An Internal Exception will be thrown Failed to evaluate Calculation
B.
An Internal Exception will be thrown Failed to evaluate Calculation
Answers
C.
0
C.
0
Answers
D.
12
D.
12
Answers
E.
10
E.
10
Answers
Suggested answer: D

Explanation:

This is the correct value of the Z data item after running the diagram through the end stage. The calculation stage will set the value of Z to ([X] + [Y])* [X], which is (2 + 4) * 2 = 12. The other options are either incorrect or describe different scenarios.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 14)

Examine the following Blue Prism Process diagram:

The 'Date Today' data item is a Date data item.

The Calculation stage is required to set the value of the 'Date Today' data item to the current date

Which of the following Blue Prism functions would you use in the Calculation stage to set the value of the 'Date Today' data item?

A.
Today()
A.
Today()
Answers
B.
'mm/dd/yyyy'
B.
'mm/dd/yyyy'
Answers
C.
GetDate()
C.
GetDate()
Answers
D.
Now()
D.
Now()
Answers
E.
'dd/mm/yyyy'
E.
'dd/mm/yyyy'
Answers
Suggested answer: D

Explanation:

This is the correct function to use in the calculation stage to set the value of the date today data item to the current date. It returns the current date and time as a date value. The other options are either incorrect or used for different purposes.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 14)

A Blue Prism Decision stage needs to test the value of a column in the current row of a Collection

The Collection is named 'Account Data' The Column is named 'Account Type'

What is the correct way to reference the required column value in the Collection row. from within the Decision stage?

A.
{Account Data Account Type)
A.
{Account Data Account Type)
Answers
B.
[Account Data Account Type]
B.
[Account Data Account Type]
Answers
C.
{Account Type}
C.
{Account Type}
Answers
D.
Collection='Account Data. Column=Account Type,'
D.
Collection='Account Data. Column=Account Type,'
Answers
E.
[Account Type]
E.
[Account Type]
Answers
Suggested answer: B

Explanation:

This is the correct way to reference the required column value in the collection row from within the decision stage. It uses square brackets to enclose the collection name and the column name. The other options are either incorrect or used for different purposes.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 14)

Unhandled Exceptions will travel up through the Process eventually to the Main Page which will cause the Process to terminate What term is used to describe this behaviour?

A.
Exception Queuing
A.
Exception Queuing
Answers
B.
Exception Deferral
B.
Exception Deferral
Answers
C.
Exception Bubbling
C.
Exception Bubbling
Answers
D.
Exception Resolution
D.
Exception Resolution
Answers
Suggested answer: C

Explanation:

This is the correct term used to describe the behavior of unhandled exceptions traveling up through the process until they reach the main page. The other options are either incorrect or describe different aspects of exception handling.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 15)

Examine the following Blue Prism Process diagram which is from the Main Page of a Process:

The Process current stage is the 'Perform Calculation' stage.

The 'Perform Calculation' stage has Exception Handling to resolve all Exceptions within the same Page

What would happen if you click on Step Over or press F10?

A.
All remaining stages in the Process would be executed, and focus would move the the End stage on the 'Main Page'
A.
All remaining stages in the Process would be executed, and focus would move the the End stage on the 'Main Page'
Answers
B.
All underlying logic on the 'Perform Calculation' Page will be processed and focus would move to the 'Update Account' stage
B.
All underlying logic on the 'Perform Calculation' Page will be processed and focus would move to the 'Update Account' stage
Answers
C.
All underlying logic on the 'Perform Calculation' Page will be processed as well as the remaining stages on the 'Main Page', before focus would move to the End stage
C.
All underlying logic on the 'Perform Calculation' Page will be processed as well as the remaining stages on the 'Main Page', before focus would move to the End stage
Answers
D.
Recover1 would receive the Exception, therefore, focus would move to the Recover1 stage
D.
Recover1 would receive the Exception, therefore, focus would move to the Recover1 stage
Answers
Suggested answer: B

Explanation:

This is the correct outcome of clicking on Step Over or pressing F10 when the current stage is a page stage. It will execute all the logic on that page and then move to the next stage on the main page. The other options are either incorrect or describe different scenarios.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 11)

Study the following Blue Prism Process diagram:

If the Decision1 stage contains an error in the Expression which causes an internal exception to be raised when the Process is run, which Recover stage will receive the Exception?

A.
It is impossible to determine from the information available
A.
It is impossible to determine from the information available
Answers
B.
Recover 1
B.
Recover 1
Answers
C.
Recover2
C.
Recover2
Answers
D.
The Process will terminate as Blue Prism Block stages will not allow multiple Recover stages to be placed within a Block
D.
The Process will terminate as Blue Prism Block stages will not allow multiple Recover stages to be placed within a Block
Answers
Suggested answer: B

Explanation:

This is the correct recover stage that will receive the exception because it is the closest recover stage to the decision stage that contains the error. The other options are either incorrect or irrelevant.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 15)

When a Work Queue item is currently being processed by a Digital Worker what happens to the queue item?

A.
The item GUID is updated to a new unique ID
A.
The item GUID is updated to a new unique ID
Answers
B.
The Work Queue item icon is updated to purple flag
B.
The Work Queue item icon is updated to purple flag
Answers
C.
The item is locked by the Process
C.
The item is locked by the Process
Answers
D.
The Work Queue item icon is updated U green tick
D.
The Work Queue item icon is updated U green tick
Answers
E.
A copy of the Work Queue item is created ready to receive any updates from the Process
E.
A copy of the Work Queue item is created ready to receive any updates from the Process
Answers
Suggested answer: C

Explanation:

This is the correct statement about what happens to a work queue item when it is being processed by a digital worker. It prevents other digital workers from accessing the same item and ensures data integrity. The other options are either incorrect or describe different stages of work queue items.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 16)

Which of the following statements best describes an Exception Retry within a Work Queue?

A.
An Item that has been marked as Complete' after processing, is then reworked by the Process as if it were a new pending Item
A.
An Item that has been marked as Complete' after processing, is then reworked by the Process as if it were a new pending Item
Answers
B.
When an Item that has been marked as 'Exception* after processing, is then sent to the manual team for review
B.
When an Item that has been marked as 'Exception* after processing, is then sent to the manual team for review
Answers
C.
When an Item that has been marked as 'Complete* after processing is then sent to the manual team for review
C.
When an Item that has been marked as 'Complete* after processing is then sent to the manual team for review
Answers
D.
An Item that has been marked as 'Exception' after processing, is then reworked by the Process as if it were a new pending Item
D.
An Item that has been marked as 'Exception' after processing, is then reworked by the Process as if it were a new pending Item
Answers
Suggested answer: D

Explanation:

This is the correct definition of an exception retry within a work queue. It allows the process to attempt to process the item again after resolving the exception. The other options are either incorrect or describe different scenarios.

Reference: https://portal.blueprism.com/sites/default/files/2021-05/Blue%20Prism%20Certification%20-%20Associate%20Developer%20-%20Certification%20Overview_0.pdf (page 16)

Total 50 questions
Go to page: of 5