ExamGecko
Home Home / Blue Prism / AD01

Blue Prism AD01 Practice Test - Questions Answers, Page 18

Question list
Search
Search

List of questions

Search

Related questions











Please refer to the exhibits.

How many Full Time Employees will the generated Report include?

A.
2
A.
2
Answers
B.
0
B.
0
Answers
C.
4
C.
4
Answers
D.
1
D.
1
Answers
Suggested answer: B

Explanation:

Loop Structure:

The loop iterates through each row in the Data collection.

For each row, it checks the 'Full Time?' condition.

Condition:

If 'Full Time?' is true, the process continues to 'Generate Report of Full Time Employees'.

If 'Full Time?' is false, the row is removed from the collection.

Loop Execution:

Initially, there are 4 rows in the Data collection.

If any row is not full-time, it is removed.

Outcome:

The decision to generate the report happens only if all rows satisfy the 'Full Time?' condition.

Since the diagram does not specify that any rows are full-time and the decision to remove rows occurs based on a negative condition, all rows could potentially be removed.

Final Report:

Given the process flow and assuming all rows do not meet the 'Full Time?' condition, no rows are left for generating the report.

Blue Prism documentation on loop stages and decision stages.

A Developer has a number of cases which need to be loaded into a Work Queue. The source data collection contains a field to indicate the customer account type as either Business, Personal or Joint Which method should the Developer use to ensure that the Business Customer cases are worked first?

A.
Set the priority of each Business Case to '0'. set the Priority of all other cases to '1'
A.
Set the priority of each Business Case to '0'. set the Priority of all other cases to '1'
Answers
B.
When populating the Work Queue set the Tag as Work Queues > Add to Queue > Tag = '^Business'
B.
When populating the Work Queue set the Tag as Work Queues > Add to Queue > Tag = '^Business'
Answers
C.
Set the priority of each Business case to T, set the Priority of all other cases to '0'
C.
Set the priority of each Business case to T, set the Priority of all other cases to '0'
Answers
D.
When populating the Work Queue, set the Tag as Work Queues > Add to Queue > Tag = '-Personal. -Joint'
D.
When populating the Work Queue, set the Tag as Work Queues > Add to Queue > Tag = '-Personal. -Joint'
Answers
Suggested answer: A

Explanation:

Understanding Priorities:

In Blue Prism, work queue items with a lower priority value are processed before those with a higher priority value.

Setting Priorities:

To ensure that Business Customer cases are worked first, the priority for these cases should be set to the lowest value.

For Business cases, set the priority to '0'.

For all other cases (Personal and Joint), set the priority to '1'.

Implementation:

While adding items to the work queue, use the Add to Queue action to set the priority.

Ensure Business cases have priority '0' and others have priority '1'.

Blue Prism documentation on work queue priorities.

ACME INC have introduced a new password policy for the Centrix Data Solutions application

A Developer has built, tested and deployed the Credentials Manager functionality to ail the automations in the Production environment

What TWO additional functionalities are now available for the Developer to use when creating future automations?

A.
Server Key Store
A.
Server Key Store
Answers
B.
Active Directory Integration
B.
Active Directory Integration
Answers
C.
Encryption Method Triple DES (192 bit)
C.
Encryption Method Triple DES (192 bit)
Answers
D.
Encrypt and decrypt Work Queue Item data
D.
Encrypt and decrypt Work Queue Item data
Answers
E.
Resource Screen Capture
E.
Resource Screen Capture
Answers
Suggested answer: B, D

Explanation:

Active Directory Integration:

With Active Directory Integration, user authentication can be managed through the organization's Active Directory, enabling better user management and security.

Encrypt and Decrypt Work Queue Item Data:

With the Credentials Manager functionality deployed, it is possible to encrypt and decrypt sensitive data within work queue items, enhancing data security.

Functionality Added:

These functionalities enhance security and streamline user management in future automations.

Blue Prism documentation on Credentials Manager and its integration with Active Directory and work queue item encryption.

In the UAT environment the process has been configured to get the input data from a file and a Data Item has been created to hold the file path However, in the Production environment, the location of this file has changed to a shared network drive.

What should the Developer do to ensure the correct file path is passed to the process without having to update the process between environments''

A.
Set the Data Item exposure to Session and update the file path every time the process starts
A.
Set the Data Item exposure to Session and update the file path every time the process starts
Answers
B.
Use a Wildcard while specifying the file path in the Data Item to enable global search on startup
B.
Use a Wildcard while specifying the file path in the Data Item to enable global search on startup
Answers
C.
Set the Data Item exposure to Environment and store the file path as an Environment Variable
C.
Set the Data Item exposure to Environment and store the file path as an Environment Variable
Answers
D.
Use File Management VBO to create a logic to search for the file every time the process runs
D.
Use File Management VBO to create a logic to search for the file every time the process runs
Answers
Suggested answer: C

Explanation:

Data Item Exposure:

Setting the Data Item exposure to 'Environment' allows the value to be consistent across different environments without changing the process.

Environment Variables:

Environment Variables can be used to store the file path, ensuring the correct path is used regardless of the environment (UAT, Production, etc.).

Implementation:

Create an Environment Variable to store the file path.

In the process, set the Data Item to use this Environment Variable.

Blue Prism documentation on Data Item exposure and Environment Variables.

Please refer to the exhibits.

An error has occurred in the Update Data' action and has been captured by the Recovery stage. As part of the retry logic, the 'No' path has been taken How should the properties be configured for the process to throw the exception that was encountered on the Update Data action''

A.
Use Business Exception in the Exception Type field and type 'Update Data Failed' in the Exception Detail field
A.
Use Business Exception in the Exception Type field and type 'Update Data Failed' in the Exception Detail field
Answers
B.
Enable Stage logging and leave the 'Preserve the type and detail of the current exception' option un-Ucked
B.
Enable Stage logging and leave the 'Preserve the type and detail of the current exception' option un-Ucked
Answers
C.
Use System Exception in the Exception Type field and ExceptionDetail(} function in the Exception Detail field
C.
Use System Exception in the Exception Type field and ExceptionDetail(} function in the Exception Detail field
Answers
D.
Tick the 'Preserve the type and detail of the current exception' checkbox and leave all other fields to their defaults
D.
Tick the 'Preserve the type and detail of the current exception' checkbox and leave all other fields to their defaults
Answers
Suggested answer: D

Explanation:

Exception Handling:

When an error occurs and is captured by the Recovery stage, it is often necessary to re-throw the same exception after attempting any retry logic.

Preserve Exception Details:

The option to 'Preserve the type and detail of the current exception' ensures that the original exception details are not lost and can be propagated further.

This is crucial for accurate logging and troubleshooting, as it keeps the original context of the exception.

Configuration:

In the Exception stage properties, tick the 'Preserve the type and detail of the current exception' checkbox.

Leave other fields such as 'Exception Type' and 'Exception Detail' to their defaults, as these are unnecessary when preserving the existing exception details.

Blue Prism documentation on exception handling and recovery stages.

Please refer to the exhibit.

The Developer is using the basic Blue Prism Process Templates

What is wrong with how this Main Page is handling exceptions''

A.
The Main Page flow adheres to best practice in the basic Process Template
A.
The Main Page flow adheres to best practice in the basic Process Template
Answers
B.
The exception handling does not contain any consecutive exception logic
B.
The exception handling does not contain any consecutive exception logic
Answers
C.
Between the Recover and Resume stages there should be logic to reset the application ready for the next case
C.
Between the Recover and Resume stages there should be logic to reset the application ready for the next case
Answers
D.
Exception Block should be removed as exceptions should be handled in the sub-pages
D.
Exception Block should be removed as exceptions should be handled in the sub-pages
Answers
Suggested answer: C

Explanation:

Exception Handling Best Practices:

Proper exception handling involves not only recovering from an error but also ensuring the system is ready for subsequent operations.

This typically includes resetting the application or any global data to a known good state.

Issue in the Main Page:

In the provided diagram, the flow directly connects the Recover stage to the Resume stage without any intermediate logic.

This is problematic because the system might be left in an inconsistent state after an error.

Required Logic:

Implement logic between the Recover and Resume stages to reset the application or any relevant data.

This ensures that after handling an exception, the system is in a known good state and can continue processing new items reliably.

Blue Prism documentation on best practices for exception handling and process design.

What are the TRUE statements about a Blue Prism Business Object?

Select the TWO correct responses.

A.
Defined within the Object layer
A.
Defined within the Object layer
Answers
B.
Will always have a Launch action
B.
Will always have a Launch action
Answers
C.
Can be used as a stand-alone process
C.
Can be used as a stand-alone process
Answers
D.
Do not share any stages with the Process Studio
D.
Do not share any stages with the Process Studio
Answers
E.
Actions are built to no specific hierarchy
E.
Actions are built to no specific hierarchy
Answers
Suggested answer: A, E

Explanation:

Defined within the Object Layer:

Blue Prism Business Objects are defined and created within the Object layer. This is where objects interact with external applications, providing a way to encapsulate the application's functionality into reusable components.

Actions Built to No Specific Hierarchy:

Actions within a Business Object are not required to follow a specific hierarchy. They are built to perform specific tasks or operations and can be executed independently of one another.

Incorrect Options:

B . Will always have a Launch action: Not all Business Objects require a Launch action, as it depends on the nature of the application being automated.

C . Can be used as a stand-alone process: Business Objects cannot be used as stand-alone processes. They are designed to be invoked by processes.

D . Do not share any stages with the Process Studio: Business Objects share many stages with Process Studio, such as calculations, decisions, and data items.

Blue Prism documentation on the Object layer and Business Objects.

Please refer to the exhibits.

This is a detail of a Process sub-page

* Sign Up Dale Current Date and Expiry Date Dala Hems are of the Date data type

* Status and Output Data Items are of the Text' data type.

What is the output of this logic when the page is executed till its End stage'

A.
Subscription Status = Expired. Expiration Date = 04-07-2023
A.
Subscription Status = Expired. Expiration Date = 04-07-2023
Answers
B.
Internal Error at the Decision stage as > function cannot be used for dates
B.
Internal Error at the Decision stage as > function cannot be used for dates
Answers
C.
Internal Error at the Calc3 stage as a date cannot be stored in a Text Data Item
C.
Internal Error at the Calc3 stage as a date cannot be stored in a Text Data Item
Answers
D.
Subscription Status = Active; Expiration Date = 04-07-2023
D.
Subscription Status = Active; Expiration Date = 04-07-2023
Answers
Suggested answer: A

Explanation:

Data Items and Types:

Sign Up Date: 04-05-2023 (Date data type)

Current Date: 13-06-2023 (Date data type)

Expiry Date: 04-07-2023 (Date data type)

Status: Text data type

Output: Text data type

Decision Stage:

The decision checks if Current Date > Expiry Date.

13-06-2023 is not greater than 04-07-2023, so the decision evaluates to No.

Calc1 and Calc3 Execution:

Since the decision is No, Calc1 and Calc3 are executed.

Calc1 is not shown, but it must set Status to something other than 'Expired' (possibly 'Active').

Calc3 concatenates Status and Expiry Date to form the final output.

Expected Output:

If Calc1 sets Status to 'Active', Calc3 will produce the output:

Subscription Status = Active; Expiration Date = 04-07-2023

Final Output:

Given the logic and data provided, if Calc1 does not change Status from 'Expired' (it wasn't executed due to decision No path):

Subscription Status = Expired. Expiration Date = 04-07-2023

If the decision path was intended to show Expired status, then:

Subscription Status = Expired; Expiration Date = 04-07-2023.

Blue Prism documentation on decision stages and data type handling in expressions.

Please refer to the exhibits.

A Developer has created the logic that is resulting in an infinite loop of exceptions when the Multi Calc stage is executed

What is the reason'?

A.
The Exception functions are used outside the recovery mode resulting in their own exception
A.
The Exception functions are used outside the recovery mode resulting in their own exception
Answers
B.
A Block is not used for the Recovery stage causing it to catch Exceptions from all stages on the page
B.
A Block is not used for the Recovery stage causing it to catch Exceptions from all stages on the page
Answers
C.
An Exception stage is not used to report Exceptions causing an infinite loop in the recovery logic
C.
An Exception stage is not used to report Exceptions causing an infinite loop in the recovery logic
Answers
D.
The Data Item names are the same as the Exception expression resulting in their own exception
D.
The Data Item names are the same as the Exception expression resulting in their own exception
Answers
Suggested answer: A

Explanation:

Exception Handling Logic:

When using ExceptionType() and ExceptionDetail() functions, they must be used within the context of an active recovery stage. These functions retrieve details about the current exception.

Issue in Logic:

In the provided diagram, the Capture Exception Detail stage is executed as a multiple calculation stage but is not within a recovery block. Using these exception functions outside recovery mode can cause another exception.

Resulting Infinite Loop:

This causes a new exception each time the Capture Exception Detail stage is executed, leading to an infinite loop of exceptions as the process continuously tries to recover from the newly generated exceptions.

Blue Prism documentation on proper use of exception functions and recovery stages.

Which statements are TRUE about the Blue Prism Release Manager''

Select the TWO correct answers.

A.
Release files can be imported by anyone regardless of their user permissions
A.
Release files can be imported by anyone regardless of their user permissions
Answers
B.
You must have a defined Package prior to a Release being generated
B.
You must have a defined Package prior to a Release being generated
Answers
C.
Modify Package wizard will update previous components released within your environment
C.
Modify Package wizard will update previous components released within your environment
Answers
D.
Only Release (bprelease) or Skill packages (.bpskill) files can be imported
D.
Only Release (bprelease) or Skill packages (.bpskill) files can be imported
Answers
E.
The Verify wizard will test a Package's components for changes since the last Release
E.
The Verify wizard will test a Package's components for changes since the last Release
Answers
Suggested answer: B, D

Explanation:

Defined Package Requirement:

To generate a release, you must first define a package. The package includes all the components (processes, objects, etc.) that will be included in the release.

File Types for Import:

Blue Prism allows importing of two types of files: Release files (.bprelease) and Skill packages (.bpskill). These are the only file types that can be imported via the Release Manager.

Incorrect Statements:

A . Release files cannot be imported by anyone regardless of their user permissions. Importing releases requires specific user permissions.

C . The Modify Package wizard does not update previous components released within your environment; it modifies the package for the current release.

E . The Verify wizard does not test a Package's components for changes since the last release; it ensures all components are included and dependencies are met.

Blue Prism documentation on Release Manager and package management.

Total 189 questions
Go to page: of 19