ExamGecko
Home Home / Blue Prism / AD01

Blue Prism AD01 Practice Test - Questions Answers, Page 12

Question list
Search
Search

List of questions

Search

Related questions











A Blue Prism Process works successfully when testing in the Process Studio but terminates in Control Room due to the exception stating screen elements were not found What should the Developer check first?

A.
The correct Spy mode was used to identify elements
A.
The correct Spy mode was used to identify elements
Answers
B.
Application Modeller has a unique match for the screen element
B.
Application Modeller has a unique match for the screen element
Answers
C.
Wait Stages have been used effectively
C.
Wait Stages have been used effectively
Answers
D.
The Attach page is published in the Business Object
D.
The Attach page is published in the Business Object
Answers
Suggested answer: A

Explanation:

Spy Mode:

Blue Prism uses different spy modes (e.g., Win32, HTML, Region, etc.) to interact with various types of applications and elements within those applications.

Testing in Process Studio vs. Control Room:

A process may work in Process Studio because elements are correctly identified during testing, but it may fail in Control Room if the wrong spy mode was used, leading to elements not being found in the live environment.

First Check:

Verify that the correct spy mode was used to identify the screen elements. This ensures that the process can reliably locate and interact with these elements during runtime.

Blue Prism documentation on spy modes and element identification.

How can input data be added to a Startup Parameter before the process runs?

A.
Navigate to Startup Parameters in the Control Room Scheduler
A.
Navigate to Startup Parameters in the Control Room Scheduler
Answers
B.
Navigate to Startup Parameters in the System area and select the correct Process
B.
Navigate to Startup Parameters in the System area and select the correct Process
Answers
C.
Right-click the item in the Work Queue and select Startup Parameters
C.
Right-click the item in the Work Queue and select Startup Parameters
Answers
D.
Right-click the session in Control Room and select Startup Parameters
D.
Right-click the session in Control Room and select Startup Parameters
Answers
Suggested answer: D

Explanation:

Startup Parameters:

Startup parameters allow a process to be configured with specific input data before it runs. This can be used to customize the behavior of the process based on the provided inputs.

Setting Startup Parameters:

In Control Room, you can set startup parameters by right-clicking the session for the process you want to run and selecting 'Startup Parameters'.

This allows you to input the necessary data directly before the process starts, ensuring it runs with the correct configuration.

Blue Prism documentation on setting and using startup parameters.

The Developer is importing a Blue Prism release file.

What will happen if there is already a Business Object or VBO with the same name in the environment they are importing into?

A.
It will be imported with a suffix (2> on the file name
A.
It will be imported with a suffix (2> on the file name
Answers
B.
The existing Object will be updated with the imported details
B.
The existing Object will be updated with the imported details
Answers
C.
A conflict error message will advise user to rename file before importing
C.
A conflict error message will advise user to rename file before importing
Answers
D.
User will be prompted to rename new object or overwrite old object
D.
User will be prompted to rename new object or overwrite old object
Answers
Suggested answer: D

Explanation:

Importing Release Files:

When importing a Blue Prism release file, the system checks for conflicts with existing objects or VBOs in the environment.

Handling Conflicts:

If there is already a Business Object or VBO with the same name in the environment, the user is prompted to either rename the new object or overwrite the existing one.

This ensures that the user can manage potential conflicts and maintain control over which version of the object is active in the environment.

Blue Prism documentation on importing release files and handling conflicts.

Please refer to the exhibit.

How should the Wait Stages be configured in this scenario?

A.
Conditional Wait stage after the Attach page and the Write stage
A.
Conditional Wait stage after the Attach page and the Write stage
Answers
B.
Conditional Wait stage after the Attach page and the Navigate stage
B.
Conditional Wait stage after the Attach page and the Navigate stage
Answers
C.
Unconditional Wait stage after the Attach page and a Conditional Wait after the Write stage
C.
Unconditional Wait stage after the Attach page and a Conditional Wait after the Write stage
Answers
D.
Unconditional Wait stage before the Attach' page and a Conditional Wait after the Navigate stage
D.
Unconditional Wait stage before the Attach' page and a Conditional Wait after the Navigate stage
Answers
Suggested answer: B

Explanation:

In Blue Prism, wait stages are crucial to ensure that the application is in the correct state before proceeding with further actions. In this scenario:

Conditional Wait stage after the Attach page: This ensures that after attaching to the application, the process waits until the necessary elements are present before continuing. This is important because the application may take some time to load or change states.

Conditional Wait stage after the Navigate stage: This ensures that after navigating, the process waits until the target elements are available. This helps to handle any delays in the application response or page loading times.

By configuring wait stages in this manner, you ensure that the process only proceeds when the application is ready, thereby minimizing the risk of errors due to timing issues.

Other options are less optimal:

Unconditional Wait stage (Options C and D): These do not provide the necessary checks to confirm the application's state and can lead to unreliable automation.

Wait stage after the Write stage (Option A): This is less relevant if the critical steps are attaching and navigating, which are the primary steps where timing issues are likely to occur.

Reference Refer to Blue Prism's best practices on using wait stages to synchronize process execution with the application state.

Examine the following extract taken from an Action in Object Studio:

What will happen if an Exception occurs in the 'Read Nasdaq Data' stage?

A.
The 'Nasdaq Error1 Recover stage will receive Error1 Exceptions, and the 'Nasdaq Error2' Recover stage will receive Error2 Exceptions
A.
The 'Nasdaq Error1 Recover stage will receive Error1 Exceptions, and the 'Nasdaq Error2' Recover stage will receive Error2 Exceptions
Answers
B.
The 'Nasdaq Error' Recover stage will receive the Exception as stages and the order of priority are decided using the stage name, which are sorted in ascending order
B.
The 'Nasdaq Error' Recover stage will receive the Exception as stages and the order of priority are decided using the stage name, which are sorted in ascending order
Answers
C.
An Exception Block will allow multiple Recover stages to be placed in the block, however only one of them will be responsive to receiving exceptions, therefore it is impossible to predict what will happen
C.
An Exception Block will allow multiple Recover stages to be placed in the block, however only one of them will be responsive to receiving exceptions, therefore it is impossible to predict what will happen
Answers
D.
The 'Nasdaq Error2' Recover stage will receive the Exception as it placed above the 'Nasdaq1 Error' Recover stage in the Action flow
D.
The 'Nasdaq Error2' Recover stage will receive the Exception as it placed above the 'Nasdaq1 Error' Recover stage in the Action flow
Answers
E.
An Internal Exception will be thrown as an Exception Block cannot contain 2 blocks
E.
An Internal Exception will be thrown as an Exception Block cannot contain 2 blocks
Answers
Suggested answer: A

Examine the following Blue Prism Process diagram:

The Process contains logic in the 'Control Room Stop Request?' Decision stage, to recognise when a Process Controller has used the 'Request Stop' feature in Control Room, to bring the Process to a controlled stop.

What expression would you use in the 'Control Room Stop Request?' Decision stage, to ensure that the Process recognises that the Control Room 'Request Stop' command has been triggered?

(Remember, Blue Prism expressions are case sensitive)

A.
A.
Answers
Suggested answer:

Explanation:

https://bpdocs.blueprism.com/bp-6-10/en-us/frmControlRoom.htm

A Blue Prism Process has been developed which contains steps to extract data from a delimited file.

During development, the Developer saves the delimited file to C:\BP_Proc\Temp folder on their virtual desktop and adds a data item to the process to store this file path. This data item is then used in the process steps to extract the file data.

The production Process must read this file from a network folder, and as the Blue Prism production environment is locked down, the Process configuration cannot be edited in this environment.

How could the data item 'exposure' be updated, so that the process can read the data item containing the relevant file path, regardless of the environment the process is being executed in?

A.
Update the data item exposure to 'Statistic'
A.
Update the data item exposure to 'Statistic'
Answers
B.
Update the data item exposure to 'Environment'
B.
Update the data item exposure to 'Environment'
Answers
C.
Update the data item exposure to 'Session'
C.
Update the data item exposure to 'Session'
Answers
D.
Update the data item exposure to 'Shared'
D.
Update the data item exposure to 'Shared'
Answers
Suggested answer: B

Explanation:

Environmental variables are those variables that are available to all processes and business objects. So, these variables are used as dynamic variables, to make sure they can be used whenever required across the Blue Prism platform.

Examine the following sub-page of a Blue Prism Process:

The 'Decision A' stage properties window is displayed below:

The 'Decision B' stage properties window is displayed below:

The Calculation stages will output A, B or C to the Result data item.

What will the value of the Result data item be after this page has been run?

A.
C
A.
C
Answers
B.
B
B.
B
Answers
C.
Blank - an internal exception will be thrown
C.
Blank - an internal exception will be thrown
Answers
D.
A
D.
A
Answers
Suggested answer: D

Examine the following Blue Prism Process diagram:

The 'Calculation Result' data item is configured as a number data item with an initial value of 100.

The Calculation stage Properties window is displayed below:

After the Process flow has run, which of the following statements are true?

A.
The 'Calculation Result' data item value will be 25
A.
The 'Calculation Result' data item value will be 25
Answers
B.
The 'Perform Calculation' Calculation stage will throw an exception
B.
The 'Perform Calculation' Calculation stage will throw an exception
Answers
C.
The 'Calculation Result' data item value item will be 125
C.
The 'Calculation Result' data item value item will be 125
Answers
D.
None of these statements are true
D.
None of these statements are true
Answers
Suggested answer: C

An Action in a Business Object needs to use Global Send Keys to populate the 'Staff Number' field in an application called Centrix Data Solutions. The application is in focus and the cursor is placed in the Staff Number field.

Examine the stage properties window below:

In order to configure a Global Send Keys action to populate the Staff Number field, which element in the Application Explorer tree displayed above, would you drag to the Element column in the stage, so that this operation can be complete?

A.
Textbox: Staff Number
A.
Textbox: Staff Number
Answers
B.
Window: Login
B.
Window: Login
Answers
C.
Panel: Login Details
C.
Panel: Login Details
Answers
D.
Centrix Data Solutions
D.
Centrix Data Solutions
Answers
Suggested answer: A
Total 189 questions
Go to page: of 19