[Nov-2024] Pass Blue Prism AD01 Exam in First Attempt Guaranteed!
Full AD01 Practice Test and 189 unique questions with explanations waiting just for you, get it now!
NEW QUESTION # 44
The Stock Value Calculator application has been launched successfully by a Business Object named 'Stock Value Calculator - Basic Actions'.
A second Business Object named 'Stock Value Calculator - Historic Values' is used to interface with the Historic Values screen within the application.
The Wait stage highlighted below has encountered an Internal Exception:
Details of the Exception are provided below:
What action is required to present this error occurring?
- A. The Business Object 'Stock Value Calculator - Basic Actions' needs to be attached to the Stock Value Calculator application
- B. The Business Object 'Stock Value Calculator - Historic Values' needs to be attached to the Stock Value Calculator application
- C. The Business Object 'Stock Value Calculator - Basic Actions' needs to activate the Stock Value Calculator application
- D. The Business Object 'Stock Value Calculator - Historic Values' must relaunch the Stock Value Calculator application
- E. The Business Object 'Stock Value Calculator - Historic Values' needs to activate the Stock Value Calculator application
Answer: E
NEW QUESTION # 45
Which of the following Stages can be found in Process Studio but NOT in Object Studio?
- A.

- B.

- C.

- D.

Answer: C
NEW QUESTION # 46
When automating a Windows application what type of stage is configured to perform a Global Send Key Events?
- A. Navigate Stage
- B. Notes Stage
- C. Read Stage
- D. Write Stage
Answer: A
NEW QUESTION # 47
Please refer to the exhibits.


The Output Data Item is a Text data type
What will be the outcome when the Developer clicks Go in Process Studio'?
- A. Data Item Output=A
- B. An Internal Exception will be thrown
- C. A System Exception will be thrown
- D. Data Item Output = &
Answer: A
Explanation:
* Input Data Item:
* The input data item is "Blue Prism!".
* Decision Criteria:
* Path A: Len([Input]) = 10
* This checks if the length of the input string is 10. "Blue Prism!" has 11 characters, so this
* condition is false.
* Path B: Right([Input], 6) = "Prism!"
* This checks if the rightmost 6 characters of the input string are "Prism!". This condition is true for the input "Blue Prism!".
* Flow Execution:
* Since Path B's condition is true, the flow will take Path B.
* Calculation Stage:
* Answer B: The calculation stage sets the Output data item to "B".
* Final Output:
* The Output data item will be set to "B".
However, based on the diagram provided and the path conditions, it's clear that "Right([Input], 6) = "Prism!"" is true for the given input "Blue Prism!". This means the flow will follow Path B, and the final result in the Output data item will be "B".
References:
* Blue Prism documentation on decision stages and calculation stages.
* The provided process logic and decision criteria.
NEW QUESTION # 48
When considering an element's attributes in Application Modeller which of the following statements are true?
- A. Selected attributes are shown as ticks in the Match column of Application Modeller
- B. The initial selection of attributes made by Blue Prism will always be the optimum attribute set for the element
- C. The attributes are provided to Blue Prism by the Target System
- D. The list of attributes may vary from application type to application type
Answer: A
NEW QUESTION # 49
Please refer to the exhibit.
A Developer is unable to pass Collection data as an Input Parameter because the Collection is not visible under available Data Items What is the reason for this issue?
- A. The referenced Collection is not set to global
- B. There are more than four fields in the Collection
- C. The Collection fields are not defined
- D. There is a block surrounding the Collection
Answer: A
Explanation:
* Revisiting the Issue:
* Similar to Question No: 130, the developer is unable to pass collection data as an input parameter because the collection is not visible under the available data items.
* Analyzing the Possible Reasons:
* Option A: As previously explained, collections need to be set to global to be visible and usable as input parameters.
* Option B: A block surrounding the collection does not impact its visibility.
* Option C: The number of fields in a collection does not affect its visibility as an input parameter.
* Option D: Undefined fields in a collection cause functional issues but not visibility issues.
* Conclusion:
* The reason the collection is not visible as an input parameter is because A. The referenced Collection is not set to global.
References:
* Blue Prism Developer Documentation: Collections and Global Data Items
* Blue Prism Training Material on Data Item Scope and Visibility
NEW QUESTION # 50
Study the following process flow on the Main Page of a process where the intention is to preserve the current exception.
What is wrong with the design?
- A. The Send Alerts process will never be run
- B. The exception handling is not within an Exception Block.
- C. 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.
- D. The exception caught by Recover2 will not be preserved by the Re-Throw Exception stage
Answer: D
NEW QUESTION # 51
Examine the following Blue Prism Process diagram:
The purpose of this Process flow is to use the Day Month and Year data item values to create a date value, which is output to the Full Date data item The Day' data item is a number data item and has an initial value of 25 The value of this data item is used as the day value when creating the full date. The 'Month' data item is a number data item and has an initial value of 10. The value of this data item is used as the month value when creating the full date. The 'Year' data item is a number data item and has an initial value of 2013 The value of this data item is used as the year value when creating the full date. The environment date format is dd/mm/yyyy.
To enable this Process flow to function correctly, drag and drop the items below into the placement boxes (A - E). to create the coned Blue Prism expression for the Convert to Date' calculation stage, so that the 'Full Date' data item is populated with the appropriate date, based on the Day Month and Year data items:
Answer:
Explanation:
Explanation:
The task is to create a date value from the 'Day', 'Month', and 'Year' data items. The correct Blue Prism expression in the 'Convert to Date' calculation stage would be:
MakeDate([Year], [Month], [Day])
This expression uses the MakeDate function to combine the year, month, and day into a full date. The order of parameters is important to match the environment's date format dd/mm/yyyy.
* [Year] - This is placed first within the MakeDate function to represent the year part of the date.
* [Month] - This follows the year within the MakeDate function to represent the month part of the date.
* [Day] - This is placed last within the MakeDate function to represent the day part of the date.
The closing parenthesis ) completes the function call.
ReferencesFor further reference and a deeper understanding of Blue Prism expressions and functions, you can consult the official Blue Prism documentation or other authoritative resources on Blue Prism development.
NEW QUESTION # 52
If you change an environment variable when will the new value be available to the process?
- A. Immediately
- B. Next time a new case is taken from a WQ
- C. Next time resource PC starts
- D. Next time the process starts
Answer: B
Explanation:
Explanation
NEW QUESTION # 53
A Blue Prism Developer is creating a process that will review travel request forms for ACME consulting. As part of this process, the Developer must ensure that none of the fields in the request are blank.
Following best practice, where should the Developer create this logic"?
- A. Object Studio a business object dedicated to validating the form
- B. Process Studio, a separate page within the process containing validation logic
- C. Object Studio a separate page within the create request object containing validation logic
- D. Process Studio: an action on the main page calling a Business Object's Validation page
Answer: B
Explanation:
Following best practices for Blue Prism development, it is essential to keep validation logic separate from the core business process to enhance maintainability and clarity. This approach ensures that validation is modular and can be easily updated or reused.
* Process Studio, a separate page within the process containing validation logic (Option B): This is the best practice for implementing validation logic. By creating a separate page within the Process Studio, the validation logic remains organized and distinct from other parts of the process. This approach allows for easy updates and debugging.
The other options are less ideal for the following reasons:
* Object Studio a business object dedicated to validating the form (Option A): While this is a valid approach, it is generally better to keep validation within the process logic rather than creating a separate object solely for validation.
* Process Studio: an action on the main page calling a Business Object's Validation page (Option C)
1: This complicates the process unnecessarily by involving an additional business object.
* Object Studio a separate page within the create request object containing validation logic (Option D): Keeping validation within the Object Studio ties it too closely to the specific object, making it less flexible and reusable.
ReferencesRefer to Blue Prism's best practices documentation on process design, which emphasizes modularity and separation of concerns.
NEW QUESTION # 54
Please refer to the exhibit.
A Developer has configured Environment Lock in the process to ensure duplicate items are not added to the Work Queue What is missing in the logic?
- A. A Query Lock action should be added after the Release Lock to confirm the release of the Lock Token
- B. A unique Lock Token should be added to its Data item to ensure the lock is acquired successfully
- C. A Release Lock action should be added to the recovery logic to unlock the resource in case of an exception
- D. A Sleep action should be added after the Acquire Lock to allow time for the Lock to be acquired
Answer: C
Explanation:
In Blue Prism, Environment Locks are used to prevent concurrent access to resources. When an exception occurs, it is crucial to ensure that the lock is released to avoid deadlocks and ensure other processes can acquire the lock.
* A Release Lock action should be added to the recovery logic to unlock the resource in case of an exception (Option A): This ensures that even if an exception occurs, the lock is released, preventing any potential deadlocks and allowing other processes to acquire the lock.
Other options are not directly addressing the core issue:
* Query Lock action (Option B): This checks the lock status but does not help in releasing the lock during an exception.
* Unique Lock Token (Option C): While important for acquiring the lock initially, it does not address the release of the lock during exceptions.
* Sleep action after Acquire Lock (Option D): This helps in timing but does not handle lock release in case of an exception.
ReferencesRefer to Blue Prism's best practices on using Environment Locks and handling exceptions to ensure that resources are properly managed and locks are released appropriately.
NEW QUESTION # 55
Study the following configuration




Which of the following statements is correct?
- A. When the configuration is run in Control Room, it will become stuck in an infinite loop until the 'Switch' Session Variable is changed to True in the Control Room
- B. When the configuration is run in Control Room, it will fail with an internal error on the first execution of the 'Switch?' stage with the error: Decision did not result in a yes/no answer
- C. When the configuration is run in Control Room, it will become stuck in an infinite loop
- D. When the configuration is run in Control Room, it will become stuck in an infinite loop until the 'Switch' Session Variable is changed to True in System Manager
Answer: D
NEW QUESTION # 56
A process has been created but it is not listed in Control Room. The following reasons have been suggested.
1. The process uses objects with different run modes
2 The process has not been published
3. Process validation shows more than 99 errors
4. The user does not have privileges to run processes in Control Room?
Which of the above could cause the process not to be visible in Control Room?
- A. 2 and 3
- B. 1 and 4
- C. 1 and 2
- D. 2 only
Answer: C
NEW QUESTION # 57
Please refer to the exhibit.
What is incorrect in the Object design"?
- A. The Recover Stage should be an Alert Stage
- B. A Resume Stage is missing
- C. No conditions exist for the Wait Stage
- D. A link cannot go to a Recover Stage
Answer: B
Explanation:
* Analyzing the Exhibit:
* The exhibit shows a flow with a Wait stage, a Timeout stage, and a Recover stage.
* A Recover stage is used to handle exceptions by marking the start of exception handling.
* Identifying the Issue:
* Option A: The Recover stage should not be an Alert stage. Recover stages are correctly used for exception handling.
* Option B: Correct. A Resume stage is missing after the Recover stage. After handling an exception with a Recover stage, a Resume stage is necessary to continue the process flow.
* Option C: It is correct to link to a Recover stage to handle exceptions.
* Option D: Conditions for the Wait stage are not relevant to the issue with the Object design shown in the exhibit.
* Conclusion:
* The incorrect aspect of the Object design is B. A Resume Stage is missing.
References:
* Blue Prism Developer Documentation: Exception Handling and Recovery
* Blue Prism Training Material on Exception Management
NEW QUESTION # 58
Which of the following statements about Business Objects is true?
- A. A Business Object is configured in the Studio area of Blue Prism
- B. A Business Object can be exposed to Control Room
- C. Logging of individual stages is not configurable in Business Objects
- D. It is Blue Prism best practice to include business rules within Business Objects
Answer: A
Explanation:
Reason: As the business object is only configure in the Object studio.
Rest all other reasons are failed.
NEW QUESTION # 59
Study the following diagram which is an extract from a sub-page of a process being tested in Process Studio:
There are no breakpoints in the "Access Customer Account" subpage however there is an error.
What will happen if you choose to step out (SHIFT +F11) when debugging the process?
- A. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus would move to the breakpoint at "Get Customer Details" stage.
- B. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus would move to the "Exception1" stage.
- C. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus would move to the stage containing the error on the "Access Customer Account" page.
- D. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus would move to the "Recover1" stage.
Answer: A
NEW QUESTION # 60
Consider the following flow within an Object Studio action:
The developer of this flow found that writing some credentials to the target application sometimes failed with an exception even though the element exists on the screen. He found that simply catching the exception, waiting for 2 seconds and then retrying fixed the problem.
What problems do you see within the flow'' (select 2 responses)
- A. There is a potential for an infinite loop if the 'Credentials' stage keeps throwing an exception for some unforeseen reason.
- B. The credentials stage is a read stage not a write stage
- C. There is not a Resume stage following the timeout of the Wait stage
- D. A block has not been placed around the Write stage and the Recover stage, meaning the credentials action could be unnecessarily retried if another stage further into this action throws an exception.
Answer: A,D
NEW QUESTION # 61
How can an environment variable value be updated? (Choose all that apply.)
- A. By updating the value in Credential Manager.
- B. By updating the value in Control Room.
- C. By changing the Blue Prism Server configuration.
- D. By updating the value in System Manager.
- E. By using the Internal - Environment Variables business object.
Answer: E
NEW QUESTION # 62
......
Prepare for your Blue Prism certification with the updated Prep4away AD01 exam questions: https://drive.google.com/open?id=1Oxg9ffoQ4LQO9BW_7nATt1qtK6aF_0x2
Get Latest AD01 Dumps Exam Questions in here: https://www.prep4away.com/Blue-Prism-certification/braindumps.AD01.ete.file.html