[2024年12月]更新のBlue Prism AD01試験基本問題には解答が付きます
2024年最新の実際に出るBlue Prism AD01試験問題集と解答
質問 # 69
When building a solution to use Tags within a Work Queue, which of the following statements is true?
- A. Adding a tag requires an item to be locked
- B. Adding a tag requires an item to be locked if there are multiple resources working the same queue
- C. Adding a tag does not require an item to be locked
正解:C
質問 # 70
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?
- A. There is no need for a wait stage in the flow
- B. The credentials stage is a read stage not a write stage
- C. The Resume stage is not within the same Exception Block as the Recover stage and therefore will not work
- D. There is a potential for an infinite loop if the Credentials' stage keeps throwing an exception for some unforeseen reason
正解:D
質問 # 71
When configuring an object’s run mode which of the following is true?
- A. Setting the run mode to exclusive will ensure only one process runs on that resource at a time.
- B. Setting the run mode to background will enable the object to run at the same time as foreground and background objects on the same resource.
- C. Leaving the run mode blank will allow any number of processes and objects to run at the same time on the same resource.
- D. Setting the run mode to foreground will give the object priority over the target system ahead of any other Business Object.
正解:B
質問 # 72
Please refer to the exhibit.
The Developer is automating an SAP Windows-based application within a Citrix environment. There is an issue with a duplicate match found when identifying and highlighting the Document No. field, due to the application window having two of the same labels and buttons.
Which Spy Mode should the Developer use to identify the correct field using Surface Automation?
- A. Application Navigator
- B. Browser
- C. Win32
- D. Region
正解:D
解説:
In a Citrix environment, where traditional spying modes might not work effectively due to the nature of remote desktop applications, Surface Automation techniques are used. The Region mode allows you to define specific areas of the screen to interact with, making it suitable for environments where duplicate elements are present.
* Region (Option D): This spy mode allows you to define a specific area on the screen and interact with elements within that region. This is particularly useful in Citrix environments where other spy modes might fail to differentiate between duplicate elements.
The other options are less effective in this scenario:
* Win32 (Option A): This mode is used for traditional Windows applications but might not work well in a Citrix environment.
* Browser (Option B): This mode is designed for web-based applications and is not suitable for Windows applications in Citrix.
* Application Navigator (Option C): This mode is not typically used for surface automation in Citrix environments.
ReferencesConsult Blue Prism's documentation on surface automation techniques and best practices for automating applications in Citrix environments.
質問 # 73
Look at this flow diagram from the Main Page of a process in Process Studio:
Thinking about the standard Blue Prism Process Templates, what is wrong with how this Mam Page is handling exceptions?
- A. There is nothing wrong with the Main Page flow shown in the image, it is a copy of Blue Prism's standard Process Template.
- B. The Exception Block in the image should be extended to cover all stages in the flow rather than just 4 sub-pages.
- C. It would be better to remove the Exception Block and recover, resume logic, and instead handle any exceptions in the sub-pages. Flag data items could instead be passed up as output parameters from the sub-pages informing the Main Page flow if an exception has occurred.
- D. The exception handling in the image does not contain any concurrent exception logic. This means there is nothing stopping every item in the Work Queue being marked with the exact same System Exception.
- E. Between the Recover and Resume stages there should be logic to reset the application ready for the next case to be worked For example, this could call the Close Down and Start Up pages.
正解:A
質問 # 74
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?
- A. There is no need for a wait stage in the flow.
- B. There is a potential for an infinite loop if the 'Credentials' stage keeps throwing an exception for some unforeseen reason.
- C. The Resume stage is not within the same Exception Block as the Recover stage and therefore will not work.
- D. The credentials stage is a read stage not a write stage.
正解:B
質問 # 75
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
- B. 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
- C. 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
- 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
正解:B
解説:
Environment variables value will only be change when the next time process runs and the session variables will change immediately on change in control room.
Session variables values will only be change from the control room and the env variables is only change from the system manager.
質問 # 76
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. Main Window
- B. Username (Edit Field)
- C. Login Window
- D. Workflow
正解:A
解説:
Explanation/Reference:
Reference: https://www.rpaforum.net/threads/global-send-keys-and-send-key-events.1587/
質問 # 77
When automating a Windows application what type of stage is configured to perform a Global Send Key Events?
- A. Navigate Stage
- B. Write Stage
- C. Read Stage
- D. Notes Stage
正解:B
解説:
Explanation/Reference:
Reference: https://www.rpaforum.net/threads/global-send-keys-and-send-key-events.1587/
質問 # 78
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. Login Window
- B. Workflow
- C. Main Window
- D. Username (Edit Field)
正解:D
解説:
Reason: As we need to pass the values in the username so the values of username to be passed only in the username element. As Rest other options are having only the outer area of the spied application.
質問 # 79
Examine the following process flow:
The Loop Orders loop is configured to loop through the Orders collection.
How many times will the 'Process Order' page be executed?
- A. 0
- B. It's impossible to tell. There is no loop counter.
- C. The loop will be infinite
- D. 1
正解:D
質問 # 80
Examine the Process below:
An error has been encountered on Page 1 and the exception has bubbled up to be recovered in the Recover stage. If there is an error in the Calc 1 stage which path will the Process take?
- A. The Process will continue to the Resume 1 Stage
- B. The Error will be recovered in the Recover2 Stage
- C. The Error will cause the Process to jump to the End Stage
- D. The Error will cause the Process to terminate
正解:D
質問 # 81
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. 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 are found.
- B. 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.
- 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.
正解:A
解説:
Reason: Is is common as the duplicate elements we are found by default as the attributes are provided by the application not by the blue prism. how do make our elements unique is not done by practicing and experience. ( This is also mentioned in the Foundation course and as well as in other Pdf too)
質問 # 82
How many Start Stages can a sub-page in a Process have?
- A. Any Number
- B. 0
- C. 1
- D. 2
正解:A
解説:
Explanation
For every page there is only one start stage, you can create the more than one start stage as there is no option to create the start stage it comes by default of any page, still if you are trying to create by copy and paste the existing start stage it will give you error.
質問 # 83
According to Blue Prism best practice which of the following information would be appropriate to store in a Work Queue tag? (select 3 responses)
- A. Details of an exception that has occurred. For example: The Login Screen was not found.
- B. Something that identifies the type of work that was performed Example tags might be: Funds Transferred, SIM Card Requested, Account, Closed, Account Suspended, Account Noted
- C. Something that identifies exact datetime of a step in the process. Example of tags might include Account Closed 20/03/2017 12:12:16, Work Completed 20/03/2017 12:12:16: Request Loaded 20/03/2017 12:12:16
- D. Something that identifies the type of process scenario. Example of tags might include: Invalid Product, Unrecognised customer, Goneaway Marker, Invalid Status
- E. Something that identifies the source of work. Example of tags might include: Email, Web Form, Excel Adhoc. Database
- F. Something that identifies the client record to make work queue items easier to search. Example tags might be a phone number, customer reference number or ID, customer full name. For example:
+4407994446767, 00023231 A; Mr John A Smith
正解:A、B、E
質問 # 84
Study the following diagram which is an extract from 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 over (F10) 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 will move to the stage containing the error on the "Access Customer Account" page.
- B. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus will move to the "Recover1" stage.
- C. The process will work all stages in the "Access Customer Account" page until the error is thrown and then focus will move to the "Get Customer Detail" stage.
- 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 appropriate recover stage on the "Access Customer Account" page.
正解:D
質問 # 85
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 "B"
- C. The flow will pass through calculation stage "A"
- D. An exception will be thrown
正解:B
質問 # 86
The Order System application has been successfully launched and Blue Prism has navigated the application to the following screen:
There is a requirement to ensure this screen is in focus before any further interfacing is done with the screen. Which is the correct configuration to ensure the New Order screen is in focus?
A:
B:
C:
D:
- A. Option B
- B. Option A
- C. Option C
- D. Option D
正解:C
質問 # 87
The Centrex Data Solutions application has been launched successfully and Blue Prism has navigated the application to the New Order screen, as displayed below:
Before Blue Prism can interact with the New Order screen, there is a requirement to ensure the screen is in focus first. Which of the following configurations are correct to the ensure the New Order screen is in focus?
- A.

- B.

- C.

- D.

正解:A
解説:
* Analysis of the Requirement:
* The task is to ensure that the "New Order" screen in the Centrex Data Solutions application is in focus before Blue Prism interacts with it.
* Ensuring the screen is in focus means making it the active window so that subsequent automation actions, such as clicking or entering text, can be performed correctly.
* Available Configurations:
* Option A: Uses the "Unhide Window" action.
* Option B: Uses the "Activate Application" action.
* Option C: Uses the "Click Window Centre" action.
* Option D: Uses the "Focus" action.
* Evaluation of Each Option:
* Option A (Unhide Window): This action would unhide the window if it were hidden, but it does not necessarily bring the window into focus.
* Option B (Activate Application): This action ensures the application is active, but it might not specifically bring the "New Order" window into focus.
* Option C (Click Window Centre): This action clicks in the center of the "New Order" window, which effectively brings it into focus by simulating a user click. This is a direct way to ensure the window is in focus.
* Option D (Focus): This action would set focus to the element, but in the provided screenshots, this configuration does not seem to be utilized or shown.
* Conclusion:
* Option C (Click Window Centre) is the correct configuration because it directly interacts with the "New Order" window to ensure it is in focus by clicking on its center. This action guarantees that the window becomes the active window, ready for further automation steps.
References:
* Blue Prism Developer Documentation: Interacting with Application Windows
* Blue Prism Training Material on Window and Element Interaction
質問 # 88
......
合格保証付きのBlue Prism Developer AD01試験問題集:https://www.passtest.jp/Blue-Prism/AD01-shiken.html
AD01練習テストエンジンで今すぐ使おう189試験問題:https://drive.google.com/open?id=1nkUF97hQxtnGesc6PP7Ld-XxaUPr5A-q