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

Blue Prism AD01 Practice Test - Questions Answers, Page 3

Add to Whishlist

List of questions

Question 21

Report Export Collapse

Examine the following Process flow:

Blue Prism AD01 image Question 21 20512 09162024192225000000

This is the Main Page of a simple process which calls the 'Calculation' Page before completing.

The data items are configured as follows:

Value-1 is a number data item with an initial value of 100.

Value-2 is a number data item with an initial value of 4.

Result is a number data item with no initial value.

The Calculation Page Reference stage is configured as follows:

Blue Prism AD01 image Question 21 20512 09162024192225000000

The Calculation Page is configured as follows:

Blue Prism AD01 image Question 21 20512 09162024192225000000

The Data Items are configured as follow:

Value-1 is a Number data item with an initial value of 200

Value-2 is a Number data item with an initial value of 4

Result is a Number data item with no initial value

The Start stage is configured to pass through the Value-1 and Value-2 values as input parameters.

The 'Divide' Calculation stage expression is [Value-1] / [Value-2]

The End stage is configured to pass back the value of the Result data item as an output parameter.

What will be contained in the Result data item on the Main Page following the execution of the Process?

25
25
0
0
50
50
37.5
37.5
Suggested answer: B
asked 16/09/2024
ML MASANE
51 questions

Question 22

Report Export Collapse

Which area of Blue Prism would you find application logic and rules?

Application Modeller
Application Modeller
Object Studio
Object Studio
Process Studio
Process Studio
Application Logic area of System Manager
Application Logic area of System Manager
Suggested answer: A
asked 16/09/2024
Sheng-Feng Zhang
44 questions

Question 23

Report Export Collapse

Examine the following Blue Prism Process diagram:

Blue Prism AD01 image Question 23 20514 09162024192225000000

The initial values for the 2 data items are displayed in the diagram above.

The expression in 'Decision A' is:

Len([City 1]) > Len([City 2])

The expression in 'Decision B' is:

Mid([City2].3,1) = '' ''

The expression in 'Decision C' is:

Left([City 1], 5) = 'manch' AND EndsWith([City 2], 'York')

What will happen when the process flow executes?

The diagram will flow through the Calculation stage named 'A'
The diagram will flow through the Calculation stage named 'A'
The diagram will flow through the Calculation stage named 'B'
The diagram will flow through the Calculation stage named 'B'
The diagram will flow to the Exception stage which will raise a new exception
The diagram will flow to the Exception stage which will raise a new exception
The diagram will flow through the Calculation stage named 'C
The diagram will flow through the Calculation stage named 'C
Suggested answer: D
asked 16/09/2024
Hari Krishnan
39 questions

Question 24

Report Export Collapse

Examine the following Process flow:

Blue Prism AD01 image Question 24 20515 09162024192225000000

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?

It's impossible to say without viewing the 'Email Customer' sub-page
It's impossible to say without viewing the 'Email Customer' sub-page
The loop will be infinite
The loop will be infinite
0
0
25
25
1
1
Suggested answer: E
asked 16/09/2024
bebo here
50 questions

Question 25

Report Export Collapse

Review the Action flow below which loops through the Customer List Collection until the relevant customer match is found, and then uses the 'Set DOB' Calculation stage to copy the value from the Collection column 'DOB', to the DOB data item:

Blue Prism AD01 image Question 25 20516 09162024192225000000

Blue Prism AD01 image Question 25 20516 09162024192225000000

- The DOB data item is a Date data item with no initial value.

- The DOB column in the Customer List Collection is a Date data type.

What expression would you use in the 'Set DOB' Calculation stage, to copy the value from the Collection column, to the DOB data item?

(Remember, Blue Prism expressions are case sensitive)

Suggested answer: A
asked 16/09/2024
Bart Hakstege
46 questions

Question 26

Report Export Collapse

Refer to the Exhibit.

Blue Prism AD01 image Question 26 20517 09162024192225000000

The Process is intended to attempt to perform the processing in the recover block, Block 3. a maximum of three times before throwing an exception.

Data Item 'Attempts' is a number data item with an initial value of 0

Data Item 'Max Attempts' is a number data item with an initial value of 3

The 'Increment Attempts' calculation stage add 1 to the attempts value and outputs a result to the 'Attempts' data item

To enable this to work correctly, what is the correct expressions for the Try Again' decision stage?

[Attempts] < [Max]
[Attempts] < [Max]
[Attempts] > [Max]
[Attempts] > [Max]
[Attempts] = [Max]
[Attempts] = [Max]
[Attempts] + 1
[Attempts] + 1
Suggested answer: A
Explanation:

This expression will evaluate to true as long as the number of attempts is less than the maximum number of attempts, which means the process will try again. If the expression is false, it means the number of attempts has reached or exceeded the maximum number of attempts, which means the process will throw an exception.

Reference: https://portal.blueprism.com/sites/default/files/2020-06/Blue%20Prism%20Certification%20-%20Developer.pdf (page 2)

asked 16/09/2024
John Johnson
39 questions

Question 27

Report Export Collapse

Examine the following process flow:

Blue Prism AD01 image Question 27 20518 09162024192225000000

The Orders Collection contains the following data

Blue Prism AD01 image Question 27 20518 09162024192225000000

The Saved Quantity Data Item is configured as a number with the initial value 0.

The Loop Orders stage is configured to loop though the Orders collection.

The Get Quantity stage is configured as follows:

Blue Prism AD01 image Question 27 20518 09162024192225000000

What will the data item Saved Quantity contain after the execution of the page?

4
4
5
5
1
1
19
19
Suggested answer: D
Explanation:

The Saved Quantity data item will contain the sum of all the Quantity values in the Orders collection after the loop. The loop will iterate through each row of the collection and add the value of Quantity to the Saved Quantity data item using a calculation stage. The initial value of Saved Quantity is 0, and after adding each row's Quantity, it will become 19 (0 + 4 + 5 + 1 + 9).

Reference: https://portal.blueprism.com/sites/default/files/2020-06/Blue%20Prism%20Certification%20-%20Developer.pdf (page 2)

asked 16/09/2024
Michael Bays
41 questions

Question 28

Report Export Collapse

How many Start Stages can a sub-page in a Process have?

0
0
1
1
2
2
Any Number
Any Number
Suggested answer: B
Explanation:

A sub-page in a process can have only one start stage, which is where the execution begins when the sub-page is called from another page. A sub-page cannot have zero or more than one start stages, as that would cause ambiguity or confusion in the execution flow.

Reference: https://portal.blueprism.com/sites/default/files/2020-06/Blue%20Prism%20Certification%20-%20Developer.pdf (page 2)

asked 16/09/2024
Faria Sah
40 questions

Question 29

Report Export Collapse

The data item 'Loop Counter' is a number data item and has an initial value of 0. The data item 'Max Loops' is a number data item and has an initial value of 10.

The two stages are configured as follows:

Blue Prism AD01 image Question 29 20520 09162024192225000000

Blue Prism AD01 image Question 29 20520 09162024192225000000

How many times will the Loop Again stage be executed when the page is executed?

10
10
9
9
11
11
The loop will be infinite
The loop will be infinite
Suggested answer: C
Explanation:

The Loop Again stage will be executed 11 times when the page is executed. The loop counter data item starts with a value of 0, and each time the loop again stage is executed, it increments by 1 using a calculation stage. The loop will continue until the loop counter value is equal to or greater than the max loops value, which is 10. Therefore, the loop again stage will be executed once for each value of loop counter from 0 to 10, which is 11 times in total.

Reference: https://portal.blueprism.com/sites/default/files/2020-06/Blue%20Prism%20Certification%20-%20Developer.pdf (page 2)

asked 16/09/2024
Himal Rai
47 questions

Question 30

Report Export Collapse

What will be the outcome after the page has run?

Data Item Output Value contains A
Data Item Output Value contains A
Data Item Output Value contains B
Data Item Output Value contains B
Data Item Output Value contains C
Data Item Output Value contains C
An Internal Exception will be thrown
An Internal Exception will be thrown
Suggested answer: D
asked 16/09/2024
Oren Dahan
50 questions
Total 189 questions
Go to page: of 19
Search

Related questions