Latest [Jan 10, 2025] Blue Prism AD01 Exam Practice Test To Gain Brilliante Result [Q82-Q104]

Share

Latest [Jan 10, 2025] Blue Prism AD01 Exam Practice Test To Gain Brilliante Result

Take a Leap Forward in Your Career by Earning Blue Prism AD01

NEW QUESTION # 82
A process contains only 4 stages. Study the following process flow:

The data item ‘Result’ is a number data item with an initial value of 2.
The calculation stage is configured as follows:

Following the execution of the Perform Calculation stage, which of the following is true?

  • A. The data item Result will contain 3
  • B. The process will throw an exception
  • C. None of these statements are correct
  • D. The data item Result will contain 5

Answer: A


NEW QUESTION # 83
When mapping the Training application the User field has been spied, but on highlight the following situation is encountered:


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

  • A. Ordinal
  • B. Height
  • C. parent Windows Text
  • D. Control ID

Answer: A


NEW QUESTION # 84
If you change the value of a 'Session Variable1, when will the new value be available to a running Process?

  • A. After the Digital Worker has been restarted
  • B. Next time the Process starts
  • C. Immediately
  • D. Next time a new case is taken from a Work Queue

Answer: C

Explanation:
* Understanding Session Variables:
* Session variables are specific to a running instance of a process and can be changed dynamically during the execution of the process.
* Behavior of Session Variables:
* When the value of a session variable is changed, it is designed to be immediately available to the running process. This allows for real-time adjustments and interactions during the process execution.
* Conclusion:
* The new value of a session variable is available to a running process immediately after it is changed.
References:
* Blue Prism Developer Documentation: Session Variables
* Blue Prism Training Material on Process Execution and Variable Management


NEW QUESTION # 85
Which of the following statements regarding the use of Work Queues are correct? (Choose two.)

  • A. Wildcards are not allowed in the Tag Filter property of the Work Queues business object Get Next Item action
  • B. Tags can be used allow flexibility in the order items are worked within a single Work Queue
  • C. Control Room allows filtering of the displayed queue items using exact tags and by using wildcards
  • D. Work Queue item Status can only be set to Completed or Exception

Answer: B,C


NEW QUESTION # 86
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 # 87
Which of the following statements are correct when considering an elements attributes in Application Modeller?
(Select all items which apply)

  • A. Attributes which are included in the element match criteria contain a tick in the Match column of Application Modeller
  • B. The attributes displayed in Application Modeller are provided to Blue Prism by the target business application
  • C. The initial selection of attributes made by Blue Prism will always be the optimum attribute set to use to match the element
  • D. The attribute list will always contain the same entries regardless of the target application or element

Answer: A,B

Explanation:
* Attributes in Application Modeller:
* Attributes List Consistency (Option A): The attribute list varies depending on the target application and element. Different applications and elements expose different attributes.
* Initial Selection (Option B): Blue Prism's initial selection is not always optimal. It is
* recommended to review and adjust attributes for the best match.
* Attributes Source (Option C): The attributes are provided by the target business application, meaning they are specific to what the application exposes.
* Match Criteria (Option D): Attributes used in matching criteria have a tick in the Match column within Application Modeller, indicating their use in identifying the element.
* Conclusion:
* The correct statements are:
* C. The attributes displayed in Application Modeller are provided to Blue Prism by the target business application.
* D. Attributes which are included in the element match criteria contain a tick in the Match column of Application Modeller.
References:
* Blue Prism Developer Documentation: Application Modeller Attributes
* Blue Prism Training Material on Element Matching and Attributes


NEW QUESTION # 88
When a process is running in Control Room which of the following functions within the process can be accessed from Control Room to request the process to stop?

  • A. Stop()
  • B. IsStopRequestec?
  • C. IsStopRequested()
  • D. StopNow?
  • E. StopNow()
  • F. Stop?

Answer: C

Explanation:
Reason: IsStopRequested() function is used for the immediate stop provided by the blueprism (mentioned in the foundation course)


NEW QUESTION # 89
Examine the following Process flow:

The 'Customer Credits' Collection contains the following data:

The 'Customer Account Credits' loop is configured to loop through the 'Customer Credits' Collection.
The 'Total Credits' data item is configured as a number data item with an initial value of 0.
The 'Get Total Credits' Calculation stage contains the following expression:

What will the Total Credit data item value be after the page has executed?

  • A. An Internal Exception: 'Loop stage name mismatch' will be thrown
  • B. 0
  • C. 1
  • D. 2

Answer: A


NEW QUESTION # 90
A screen contains four buttons, Find, Save, Close and New. When the buttons are spied, the attributes are identical except for the Window Text attribute.
The values for the Windows Text attribute are Find' for the Find button. 'Save' for the Save button, Close' for the Close button and New' for the New Button.
The Dynamic Button element has been spied and has the following attributes set:

What additional configuration is required to ensure the Close button is selected by the Navigate stage?

  • A. The Params button must be selected and the parameter configured to override the Window Text attribute value to 'Close'
  • B. A new element is required with the Window Text value set to "Close and the Match Type set to equal
  • C. It is not possible to select the Close button using the Dynamic Button element because the value is set to
    'Find in the Application Modeller
  • D. Set the Mouse Button value to Close'

Answer: D


NEW QUESTION # 91
Study the following process flow:

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:

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

  • A. The loop will be infinite
  • B. 0
  • C. 1
  • D. 2

Answer: C


NEW QUESTION # 92
Which of the following indicates a case in a Work Queue is waiting to be worked?

  • A.
  • B.
  • C.
  • D.

Answer: C

Explanation:
Explanation


NEW QUESTION # 93
A business object needs to use a Global Send Keys stage to populate the User Name field in an application entitled Workflow. The application is in focus and cursor is in the User Name field. In order to configure the Global Send Keys, which element needs to be placed in the Element field of the stage below?

  • A. Username (Edit Field)
  • B. Login Window
  • C. Workflow
  • D. Main Window

Answer: D

Explanation:
Explanation/Reference:
Reference: https://www.rpaforum.net/threads/global-send-keys-and-send-key-events.1587/


NEW QUESTION # 94
Which of the following Stages can be found in Process Studio AND Object Studio?

  • A.
  • B.
  • C.
  • D.

Answer: B

Explanation:
Reason: Only the choice stage is found in both process and object studio rest all other stages are found only in the object studio.


NEW QUESTION # 95
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 item will be 125
  • B. The 'Perform Calculation' Calculation stage will throw an exception
  • C. None of these statements are true
  • D. The 'Calculation Result' data item value will be 25

Answer: A


NEW QUESTION # 96
Examine the following extract taken from an Action in Object Studio:

What problem do you see with the current configuration of this Action flow?

  • A. There is a missing Recover stage on one of the routes through the flow
  • B. There is nothing wrong with the current configuration
  • C. There is a missing Resume stage on one of the routes through the flow?
  • D. The Retry Limit data item is set to 10 when it should always be set to 3

Answer: A

Explanation:
* Understanding the Diagram:
* The diagram shows an Action in Object Studio with retry logic and exception handling.
* The flow includes a Retry Limit, Retry Count, and a decision point to retry or throw a system exception.
* Analyzing the Flow:
* Option A: The Retry Limit being set to 10 is not inherently wrong; it depends on the requirements of the specific process.
* Option B: A Resume stage exists and is properly placed.
* Option C: There is a Recover stage missing on one of the routes. Specifically, the flow has a decision to check for a "Missing Element?" but there is no corresponding Recover stage before this check, which is essential for handling exceptions correctly.
* Option D: This configuration is not entirely correct due to the missing Recover stage.
* Conclusion:
* The problem with the current configuration of this Action flow is that C. There is a missing Recover stage on one of the routes through the flow. Proper exception handling requires a Recover stage before making decisions based on exceptions.
References:
* Blue Prism Developer Documentation: Exception Handling and Recovery
* Blue Prism Training Material on Object Studio and Exception Management


NEW QUESTION # 97
FILL BLANK
Examine the following recover flow taken from a Blue Prism Process:

The 'Exception Detail' data item has no initial value and has a data type of text.
The Calculation stage 'Save Exception Detail' will output the current exception detail to the 'Exception Detail' data item.
What expression would you use in the 'Save Exception Detail' stage to achieve this?

Answer:

Explanation:
ExceptionDetail()


NEW QUESTION # 98
Consider the following process flow:

Decision "A" properties are:

Decision "B" properties are:

Decision "C" properties are:

What will happen when the process runs?

  • A. The flow will pass through calculation stage "C"
  • B. The flow will pass through calculation stage "A"
  • C. The flow will pass through calculation stage "B"
  • D. An exception will be thrown

Answer: D


NEW QUESTION # 99
How many Start Stages can a sub-page in a Process have?

  • A. 0
  • B. Any Number
  • C. 1
  • D. 2

Answer: D


NEW QUESTION # 100
You identify an element in Application Modeller but when you highlight or use that element Blue Prism gives you an error message saying that duplicate elements were found.
Which of the following statements is true?

  • A. A code stage interface will need to be created and used for this application, this will give you more flexibility to interact with the application elements.
  • B. It is common for duplicate elements to be found based upon the attributes that are ticked by default using the Blue Prism product. Time needs to be spent experimenting with the attribute ticks until a unique, reliable, and consistent selection of attributes is found.
  • C. It will not be possible to interface with the element in a unique way. You will need to use Surface Automation techniques for this element.
  • D. You will need to make the attributes you have selected dynamic. This will allow your flow to loop around, incrementing the attribute value until the correct element is found and used.

Answer: D


NEW QUESTION # 101
What are the TRUE statements about a Blue Prism Business Object?
Select the TWO correct responses.

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

Answer: C,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.
References:
* Blue Prism documentation on the Object layer and Business Objects.


NEW QUESTION # 102
Which of the following options can be used to update the value of a data item exposed as a 'Session Variable', whilst the process is running?
(Select all items which apply)

  • A. By updating the data item value in the Variable Repository in System Manager
  • B. By updating the data item value in System Manager
  • C. Through a Calculation stage in the same process
  • D. Selecting the running Process in Control Room and then using the menu options to push a new value to the data item

Answer: C,D

Explanation:
* Session Variables:
* Session Variables are data items whose values can be changed while a process is running.
* Updating Session Variables:
* Variable Repository in System Manager (Option A & B): This refers to managing variables at the system level, which is not used for updating running process variables directly.
* Calculation Stage (Option C): This can be used within the process to update the value of a session variable during runtime.
* Control Room (Option D): Allows operators to update session variable values for running processes via menu options.
* Conclusion:
* The correct methods to update the value of a data item exposed as a 'Session Variable' while the process is running are:
* C. Through a Calculation stage in the same process.
* D. Selecting the running Process in Control Room and then using the menu options to push a new value to the data item.
References:
* Blue Prism Developer Documentation: Session Variables and Data Items
* Blue Prism Training Material on Control Room Operations


NEW QUESTION # 103
Study the process flow below:

The outputs for the Get Next Case are configured below:

A)

B)

C)

D)

  • A. Option A
  • B. Option C
  • C. Option D
  • D. Option B

Answer: C


NEW QUESTION # 104
......

Authentic Best resources for AD01 Online Practice Exam: https://www.freecram.com/Blue-Prism-certification/AD01-exam-dumps.html

Updates Up to 365 days On Developing AD01 Braindumps: https://drive.google.com/open?id=1JoHYzAmEnbmnoGQnmn2_cE3vA_nOlwOy

0
0
0
10