Free Blue Prism AD01 Exam Actual Questions

The questions for AD01 were last updated On Dec 18, 2024

Question No. 1

Which of the following flow representations are invalid and therefore cannot be recreated in a Blue Prism flow diagram:

A)

B)

C)

D)

Show Answer Hide Answer
Correct Answer: B

Understanding Blue Prism Flow Representations:

Blue Prism flow diagrams represent the logic and control flow of automated processes.

Each stage must follow the rules of the process flow, and certain configurations are invalid.

Analysis of Options:

Option A: Shows a timeout leading to an Exception stage, followed by an Email Alert. This is valid as it properly handles an exception and sends an alert.

Option B: Shows a timeout leading to a Resume stage, and then directly to an Email Alert. This is invalid because a Resume stage should be followed by logic to recover from the exception, not directly proceed to another action without resolving the issue.

Option C: Shows a timeout leading to a Recover stage. This is valid as it starts the exception handling process.

Option D: Shows a timeout leading to a Resume stage, followed by an Exception stage. This is valid as it properly handles exceptions by resuming and then throwing an exception if needed.

Conclusion:

Option B is the invalid representation because it incorrectly uses a Resume stage without properly handling the exception before proceeding to the next action.


Blue Prism Developer Documentation: Exception Handling

Blue Prism Training Material on Process Flow and Error Management

Question No. 2

Examine the following Process flow:

The 'Loop Customer List' loop is configured to loop through the 'Customer List' Collection.

Any Exceptions Encountered on the 'Email Customers' sub-page will be resolved in the same page.

How many times will the 'Email Customer' sub-page be executed?

Show Answer Hide Answer
Correct Answer: E

Question No. 3

Consider the following process flow:

What is the problem with this flow?

Show Answer Hide Answer
Correct Answer: A

Question No. 4

When configuring an object's run mode which of the following is true?

Show Answer Hide Answer
Correct Answer: C

Question No. 5

Study the following process flow:

This is the Mam Page of a simple process which calls the Page Calculation before completing The data items are configured as follows:

* X is a Number data item with an initial value of 20

* Y is a Number data item with an initial value of 5

* Result is a Number data item with no initial value

The Calculation Page stage is configured as follows:

The Calculation Page is as follows:

The Data Items are configured as follow:

* X is a Number data item with an initial value of 10

* Y is a Number data item with an initial value of 5

* Result is a Number data item with no initial value

The Start Stage is configured pass through the X and Y values as input parameters.

The divide calculation stage expression is [X] / [Y]

The end stage is configured to pass back the results value as an output parameter.

What will be contained in the Result Data Item on the Mam Page following the execution of the Process?

Show Answer Hide Answer
Correct Answer: D