ExamGecko
Home / Blue Prism / AD01 / List of questions
Ask Question

Blue Prism AD01 Practice Test - Questions Answers, Page 2

Add to Whishlist

List of questions

Question 11

Report Export Collapse

Examine the following diagram which has been extracted from a Blue Prism Process currently being tested in Process Studio

Blue Prism AD01 image Question 11 20502 09162024192225000000

The Request Type is a text data item and will contain a text value which categorizes the type of request being processed. The Process Request stage has been assigned a Breakpoint with the following Breakpoint condition:

Blue Prism AD01 image Question 11 20502 09162024192225000000

What will happen if you press the Go button when debugging the Process?

If the 'Request Type' value equals 'New Card', then the Process will stop at the Breakpoint on the 'Process Request' stage
If the 'Request Type' value equals 'New Card', then the Process will stop at the Breakpoint on the 'Process Request' stage
If the 'Request Type' value equals 'New Card' then the Process will flow to the End stage without stopping
If the 'Request Type' value equals 'New Card' then the Process will flow to the End stage without stopping
Breakpoints are unconditional therefore the Process flow will always stop at the 'Process Request' stage
Breakpoints are unconditional therefore the Process flow will always stop at the 'Process Request' stage
If the 'Request Type' value is not equal to 'New Card', then the Process will stop at the Breakpoint on the 'Process Request' stage
If the 'Request Type' value is not equal to 'New Card', then the Process will stop at the Breakpoint on the 'Process Request' stage
Suggested answer: A
Explanation:

Understanding the Breakpoint:

A breakpoint in Blue Prism is used to pause the execution of a process at a specific stage, allowing for debugging.

The breakpoint can be conditional, meaning it will only pause the process if a specified condition is met.

Analyzing the Breakpoint Condition:

The provided condition is [Request Type] = 'New Card'.

This means the breakpoint on the 'Process Request' stage will only trigger if the value of the 'Request Type' data item is 'New Card'.

Possible Outcomes:

Option A: Correct. If the 'Request Type' value equals 'New Card', the process will stop at the 'Process Request' stage because the condition is met.

Option B: Incorrect. If the 'Request Type' value equals 'New Card', the process will stop at the breakpoint, not flow to the end without stopping.

Option C: Incorrect. Breakpoints can be conditional, so they do not always stop the process unconditionally.

Option D: Incorrect. The process will stop at the breakpoint if the 'Request Type' value equals 'New Card', not if it does not equal 'New Card'.

Conclusion:

The correct answer is A. If the 'Request Type' value equals 'New Card', then the process will stop at the breakpoint on the 'Process Request' stage.

Blue Prism Developer Documentation: Debugging and Breakpoints

Blue Prism Training Material on Conditional Breakpoints

asked 16/09/2024
Nour Algharbi
47 questions

Question 12

Report Export Collapse

Examine the following diagram which has been extracted from a Blue Prism Process currently being tested in Process Studio:

Blue Prism AD01 image Question 12 20503 09162024192225000000

The 'Access Customer Account* sub-page contains no Breakpoints, however the page does contain an error.

What will happen if you choose to Step Over (F10) when debugging the Process?

The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the stage containing the error on the 'Access Customer Account' page
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the stage containing the error on the 'Access Customer Account' page
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus would move to the appropriate recover stage on the 'Access Customer Account' page
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus would move to the appropriate recover stage on the 'Access Customer Account' page
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the 'Recover1' stage
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the 'Recover1' stage
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the 'Get Customer Details' stage
The Process will work all stages in the 'Access Customer Account' Page until the exception is thrown and then focus will move to the 'Get Customer Details' stage
Suggested answer: C
Explanation:

Understanding the Diagram and Process Flow:

The process includes a sub-page called 'Access Customer Account', which contains an error.

When debugging, choosing to 'Step Over' (F10) will execute the sub-page without stepping into each individual stage within it.

Exception Handling in Blue Prism:

If an error occurs within the 'Access Customer Account' sub-page, the process will throw an exception.

The process will then move to the appropriate Recover stage to handle the exception.

Recover Stage Focus:

Option A: Incorrect. Focus will not move directly to the stage containing the error within the sub-page.

Option B: Incorrect. The process does not move to the internal recover stage of the sub-page if there are no breakpoints.

Option C: Correct. The process will move to the 'Recover1' stage after the exception is thrown, as it is the appropriate recover stage for handling the error.

Option D: Incorrect. Focus will not move to the 'Get Customer Details' stage, as the exception handling logic will direct it to 'Recover1'.

Conclusion:

The correct answer is C. The process will work all stages in the 'Access Customer Account' page until the exception is thrown, and then focus will move to the 'Recover1' stage.

Blue Prism Developer Documentation: Exception Handling and Recovery Stages

Blue Prism Training Material on Debugging and Exception Management

asked 16/09/2024
Roger Berger
31 questions

Question 13

Report Export Collapse

Examine the following Blue Prism Process flow:

Blue Prism AD01 image Question 13 20504 09162024192225000000

The Process is intended to attempt to perform the processing enclosed in Block1 a maximum of three times before throwing an exception

The 'Attempts' data item is a number data item with an initial value of 0.

The 'Max Attempts' data item is a number data item with an initial value of 3.

The 'Increment Attempts' Calculation stage increases the value of the 'Attempts' data item by 1.

To enable this to work correctly, what is the correction Expression for the 'Increment Attempts' Calculation stage?

+1
+1
Attempts +1
Attempts +1
Max Attempts + 1
Max Attempts + 1
{Attempts + 1
{Attempts + 1
[Attempts) + 1
[Attempts) + 1
Suggested answer: E
Explanation:

Understanding the Process Flow:

The process is designed to attempt the actions within Block1 up to three times before throwing an exception.

The 'Attempts' data item starts at 0 and is incremented by 1 each time the Increment Attempts Calculation stage is executed.

The 'Max Attempts' data item is set to 3, which represents the maximum number of allowed attempts.

Calculation Stage Expression:

The correct expression for incrementing the 'Attempts' data item should add 1 to the current value of 'Attempts'.

In Blue Prism, data items are referenced using square brackets. Therefore, the correct expression should be [Attempts] + 1.

Analysis of Options:

Option A: +1 is incomplete and not correct.

Option B: Attempts +1 is incorrect because it lacks the proper referencing syntax.

Option C: Max Attempts + 1 is incorrect because it references the wrong data item and will result in the incorrect calculation.

Option D: {Attempts + 1 is incorrect due to syntax issues.

Option E: [Attempts] + 1 is the correct expression, using proper syntax to reference the 'Attempts' data item.

Conclusion:

The correct expression for the 'Increment Attempts' Calculation stage is E. [Attempts] + 1.

Blue Prism Developer Documentation: Calculation Stages

Blue Prism Training Material on Data Item Reference

asked 16/09/2024
bryan calderon
42 questions

Question 14

Report Export Collapse

Which of the following indicates a case in a Work Queue is currently being processed?

Blue Prism AD01 image Question 14 20505 09162024192225000000

Option A
Option A
Option B
Option B
Option C
Option C
Option D
Option D
Suggested answer: C
asked 16/09/2024
Sheng-Feng Zhang
42 questions

Question 15

Report Export Collapse

Examine the following Blue Prism Action diagram taken from Object Studio:

Blue Prism AD01 image Question 15 20506 09162024192225000000

What is wrong with the current configuration?

The current configuration risks creating an infinite loop.
The current configuration risks creating an infinite loop.
The current configuration is missing an intelligent Wait stage after the 'Read Result Table' stage, to ensure the Action logic has worked correctly.
The current configuration is missing an intelligent Wait stage after the 'Read Result Table' stage, to ensure the Action logic has worked correctly.
There is nothing wrong with the current configuration.
There is nothing wrong with the current configuration.
The Exception Block should be removed from the page so that all exceptions on that page can be recovered.
The Exception Block should be removed from the page so that all exceptions on that page can be recovered.
Suggested answer: A
asked 16/09/2024
Sam Krupesh
44 questions

Question 16

Report Export Collapse

A Blue Prism solution works fine when developing and testing it in Process and Object Studio, but when it is run in Control Room, exceptions occur because elements are not being found.

What is the most likely cause of this behaviour?

The target application has changed in design
The target application has changed in design
Intelligent Wait stages have not been used in line with Blue Prism best practices within Business Object Actions
Intelligent Wait stages have not been used in line with Blue Prism best practices within Business Object Actions
The Business Object Action has not been published, therefore, it cannot be used by a Process in Control Room.
The Business Object Action has not been published, therefore, it cannot be used by a Process in Control Room.
Exception handling best practice has not been incorporated into the Process design
Exception handling best practice has not been incorporated into the Process design
Suggested answer: B
asked 16/09/2024
Aldrin Plata
45 questions

Question 17

Report Export Collapse

Which of the statements below best describes what Blue Prism is used for?

Blue Prism is used for modelling business processes
Blue Prism is used for modelling business processes
Blue Prism is used to link core business applications together
Blue Prism is used to link core business applications together
Blue Prism is used to create Virtual Digital Workers that can replicate user actions and decisions
Blue Prism is used to create Virtual Digital Workers that can replicate user actions and decisions
Blue Prism is used to transfer data from one system to another
Blue Prism is used to transfer data from one system to another
Suggested answer: C
asked 16/09/2024
Mike van den Berg
41 questions

Question 18

Report Export Collapse

Examine the following Exception handling taken from the Main Page of a Blue Prism Process:

Blue Prism AD01 image Question 18 20509 09162024192225000000

Consider the following potential explanations as to what is wrong with the design:

1. The exception handling is not within an Exception Block.

2. There is no Resume stage in the shown process flow.

3. There is a potential for the flow to cause an infinite loop within the process.

4. Because the flow is on the Main Page of the process there should not be a 'Re-Throw' Exception stage as there are no parent/calling pages for the exception to 'bubble up' to.

Which of the above appropriately describes what is wrong with this design?

1,2, 3 and 4
1,2, 3 and 4
3 only
3 only
4 only
4 only
2 and 4
2 and 4
Suggested answer: C
asked 16/09/2024
Maria Kniess
42 questions

Question 19

Report Export Collapse

The staff number field of the Centrix Data Solutions business application can be spied successfully, however when using the Highlight feature in Application Modeller, the following behaviour is encountered:

Blue Prism AD01 image Question 19 20510 09162024192225000000

Which of the following Attributes would you use to help obtain a unique element match?

Parent Class Name
Parent Class Name
Parent Ordinal
Parent Ordinal
Class Name
Class Name
Ordinal
Ordinal
XandY
XandY
Suggested answer: D
asked 16/09/2024
Luis Campoy
43 questions

Question 20

Report Export Collapse

An Action called 'Get Customer Address' fails immediately and the following Exception is raised:

Internal: Stage Address Type does not exist

What is the potential reason for this Exception?

An Action stage with the name 'Address Type' is being referenced but it no longer exists
An Action stage with the name 'Address Type' is being referenced but it no longer exists
An internal error always indicates a problem with the Blue Prism product. The Blue Prism support team should be contacted for assistance
An internal error always indicates a problem with the Blue Prism product. The Blue Prism support team should be contacted for assistance
A data item referenced as an input parameter in the 'Get Customer Address' Action cannot be found
A data item referenced as an input parameter in the 'Get Customer Address' Action cannot be found
Whilst debugging a Process in Process Studio, the 'Reset' button was pressed whilst the process was calling the 'Get Customer Address' action
Whilst debugging a Process in Process Studio, the 'Reset' button was pressed whilst the process was calling the 'Get Customer Address' action
Suggested answer: C
asked 16/09/2024
Gennaro Migliaccio
35 questions
Total 189 questions
Go to page: of 19
Search

Related questions