AD01テスト問題練習試そう!2022年に更新された72問あります [Q24-Q43]

Share

AD01テスト問題練習試そう!2022年に更新された72問あります

更新された2022年01月プレミアムAD01試験エンジンPDFで今すぐダウンロード!無料更新された72問あります

質問 24
Сonsider the following process flow from the Main Page of a process in Process Studio:

Thinking about the standard Blue Prism Process Templates, what is wrong with this Main Page process flow?

  • A. The Reset Global Data page is not required because sub-pages within a process should always use input and output parameters rather than global data items. There should be no global data to reset.
  • B. The Stop? decision stage should be removed from the process flow, as Stop times is configured either within the Scheduler or processes are stopped via Control Room.
  • C. The Main Page process flow is too high level. For better visibility of the process logic the flow steps hidden in the sub-pages should all be on the main page instead.
  • D. There is nothing wrong with the Main Page flow shown in the image, it is a copy of Blue Prism's standard Process Template.
  • E. There is no exception handling on this Main Page so any exceptions that "bubble up" will cause the process to terminate rather than exceptions being handled correctly.

正解: B

 

質問 25

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?

  • A. [Attempts] = [Max]
  • B. [Attempts] > [Max]
  • C. [Attempts] < [Max]
  • D. [Attempts] + 1

正解: C

 

質問 26
Which of the following statements regarding the use of Worker Queues are correct? (select 2 responses)

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

正解: B,D

 

質問 27
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. Username (Edit Field)
  • C. Workflow
  • D. Main Window

正解: D

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

 

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

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

正解: B

解説:
Explanation
Explanation/Reference: https://www.rpatraining.co.in/blue-prism-interview-questions/

 

質問 29
You identify an element in Application Modeller and it highlights uniquely and can be used in your object flow diagram. The next day you find that Blue Prism cannot no longer identify the same element, your object flow is giving you 'Element not found' exceptions. Which of the following statements is true?

  • A. The Blue Prism product support team should be contacted to report the issue. This signifies an inconsistency in how the Blue Prism product is working which needs to be fixed.
  • B. It is common for consistency issues to be found during configuration/development testing. The most likely cause is that an attribute has been selected for the element that is changeable, such as a window title with a date, or a URL The developer needs to ensure that any changeable attributes are unticked.
  • C. This suggests that Best Practice exception handling has not been implemented in the object. A retry loop around the object stages that are using the element will probably fix the problem
  • D. This must be an environment issue. The Blue Prism environment must be consistent and persistent, and an element that worked one day and does not work the next day suggests the environment is changeable. The IT team supporting the environment needs to be contacted to fix the problem.

正解: B

解説:
Reason: This is happening when identifying the elements in application modeler some of the details which are changing on the different environment and while identifying the elements in application modeler the developer takes the element whose values are changing and when the application run on the different path at that point of the time the process is able to expecting values eg same url, date or title but it is not at there so the process terminates. Follow the best practice for this.

 

質問 30
A Blue Prism solution interfaces with an internet application called HappyWeb There is a test website available for development, and a training site available for user acceptance testing, and there is the production she available for processing live cases in HappyWeb.
Which of the following is true?

  • A. A local text file should be used to easily configure the details of the HappyWeb website to be used in each Blue Prism environment.
  • B. Three different versions of object that launches the HappyWeb website will need to be created and maintained, one for each environment.
  • C. All development and testing MUST be done using the production site. This is because the test and training websites might not mirror production exactly.
  • D. An Environment variable should be used to store the HappyWeb URL.

正解: D

 

質問 31
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. Set the Mouse Button value to Close'
  • C. A new element is required with the Window Text value set to "Close and the Match Type set to equal
  • D. 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

正解: B

 

質問 32
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. StopNow ()
  • B. Stop?
  • C. IsStopRequested ()
  • D. IsStopRequested?
  • E. StopNow?
  • F. Stop ()

正解: C

 

質問 33
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 not a Resume stage following the timeout of the Wait stage
  • B. There is a potential for an infinite loop if the 'Credentials' stage keeps throwing an exception for some unforeseen reason.
  • C. 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.
  • D. The credentials stage is a read stage not a write stage.

正解: C,D

 

質問 34
Which of the following statements about Business Objects is true?

  • A. It is Blue Prism best practice to include business rules within Business
  • B. Logging of individual stages is not configurable in Business Objects
  • C. A Business Object can be exposed to Control Room
  • D. A Business Object is configured in the Studio area of Blue Prism

正解: A

 

質問 35
Which of the following indicates a case in a Work Queue is waiting to be worked?

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

正解: B

 

質問 36

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?

  • A. [Attempts] = [Max]
  • B. [Attempts] < [Max]
  • C. [Attempts] > [Max]
  • D. [Attempts] + 1

正解: D

 

質問 37
How can a session variable value be updated when a process is running? (Choose all that apply.)

  • A. By pausing the Session Variables work queue.
  • B. By updating the value in Control Room.
  • C. By updating the value in Credential Manager.
  • D. By using the Internal – Session Variables business object.

正解: B

 

質問 38
How can a session variable value be updated when a process is running? (Choose all that apply.)

  • A. By using the Internal - Session Variables business object.
  • B. By pausing the Session Variables work queue.
  • C. By updating the value in Control Room.
  • D. By updating the value in Credential Manager.

正解: C

 

質問 39
Which of the following statements about Business Objects is true?

  • A. Logging of individual stages is not configurable in Business Objects
  • B. A Business Object can be exposed to Control Room
  • C. It is Blue Prism best practice to include business rules within Business Objects
  • D. A Business Object is configured in the Studio area of Blue Prism

正解: D

解説:
Reason: As the business object is only configure in the Object studio.

Rest all other reasons are failed.

 

質問 40
Which of the following indicates a case in a Work Queue is waiting to be worked?
A:

B:

C:

D:

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

正解: D

 

質問 41
Consider the following diagram from an object studio action:

What is the problem with this flow?

  • A. There is nothing wrong with the object flow shown in this image.
  • B. There should be a wait stage at the end of the flow, before the end stage to ensure the flow logic has worked correctly.
  • C. The Exception Block should be removed from the page so that all exceptions on that page can be recovered.
  • D. There is a risk of the flow causing an infinite loop.

正解: C

 

質問 42
Which of the following indicates a case in a Work Queue is waiting to be worked?
A)

B)

C)

D)

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

正解: D

 

質問 43
......

正真正銘のAD01問題集には100%合格率練習テスト問題集:https://jp.fast2test.com/AD01-premium-file.html

Blue Prism AD01リアル試験問題保証付き更新された問題集にはFast2test:https://drive.google.com/open?id=1jZSIEyQL6t4ybWiN2D4y3RYbKb_KFoZ2


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어