[Sep 25, 2021] AD01 Ultimate Study Guide - ExamsLabs [Q32-Q52]

Share

[Sep 25, 2021] AD01 Ultimate Study Guide -  ExamsLabs

Ultimate Guide to Prepare AD01 Certification Exam for Blue Prism Developer in 2021

NEW QUESTION 32
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. Workflow
  • B. Main Window
  • C. Username (Edit Field)
  • D. Login Window

Answer: C

Explanation:
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.

 

NEW QUESTION 33
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. 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.
  • C. 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.
  • D. The Exception Block in the image should be extended to cover all stages in the flow rather than just 4 sub-pages.
  • 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.

Answer: B

 

NEW QUESTION 34
The Saved Quantity Data Item is configured as a number with the initial value 0.
The Loop Orders stage is configured to loop though the Orders collection.
The Get Quantity stage is configured as follows:

What will the data item Saved Quantity contain after the execution of the page?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: D

 

NEW QUESTION 35
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 5
  • B. None of these statements are correct
  • C. The data item Result will contain 3
  • D. The process will throw an exception

Answer: C

 

NEW QUESTION 36
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. The credentials stage is a read stage not a write 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. There is not a Resume stage following the timeout of the Wait stage

Answer: A,C

 

NEW QUESTION 37
Consider the following process flow:

Decision JA" properties are:

Decision "B" properties are.

Decision "C" properties are

What will happen when the process runs?

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

Answer: A

 

NEW QUESTION 38
Consider the following flow in an object:

Which of the following statements are true?

  • A. There should be a wait stage after every stage in this flow (i.e. after the navigate, read, write stages.
  • B. If during testing in object studio this flow works, no additional wait stages should be added as they will slow the interface down.
  • C. There should be an intelligent wait stage after the start stage and after any stage that cause the application we are interfacing with to change
  • D. There just needs to be a wait stage after the start stage to correct this action.

Answer: C

Explanation:
Explanation
Intelligent wait stage should always be used after every stage and that should be minute wait to overcome the lag when the application runs and on wait should only be used when some of action interfacing the screens or any updating is going on as per the best practices pdf

 

NEW QUESTION 39
In which of these scenarios is it ok not to use a Blue Prism work queue as part of your Blue Prism solution?

  • A. A Blue Prism work queue is not required for simple linear processes that do not work multiple cases.
  • B. A Blue Prism work queue is not required if the business process interfaces with a Work List system with in-built capability to ensure multiple users cannot work the same case at the same time
  • C. A Blue Prism work queue should always be used. It eliminates the risk of contention and allows you to gracefully pause the queue at any time.
  • D. A Blue Prism Work Queue decreases the scalability of the solution and therefore should only be used for complex scenarios such as multi-day processing.

Answer: A

 

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

Answer: D

 

NEW QUESTION 41
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. 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.
  • C. 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.
  • D. 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.

Answer: B

 

NEW QUESTION 42
What is the syntax for using a collection field in an expression?

  • A. Like this MyCollection.MyField
  • B. Like this MyCollection(MyField)
  • C. Like this MyCollection[MyField]
  • D. Like this [MyCollection.MyField]
  • E. Like this [MyCollection[MyField]]

Answer: D

Explanation:
Reason: collection name or data type should always pass in square braces. And if you want to pass any column from the collection than use it as a dot notation after the collection name in the same braces. (You can check this in foundation course or by doing practically)

 

NEW QUESTION 43
Which of the following can you perform in Control Room? (select all that apply)

  • A. Create a Work Queue
  • B. Refresh a Work Queue
  • C. Encrypt a Work Queue
  • D. Rename a Work Queue

Answer: B

 

NEW QUESTION 44
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 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
  • 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 source of work. Example of tags might include: Email, Web Form, Excel Adhoc. Database
  • E. Something that identifies the type of process scenario. Example of tags might include: Invalid Product, Unrecognised customer, Goneaway Marker, Invalid Status
  • F. 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

Answer: A

 

NEW QUESTION 45
Examine the flow below:

An error has been encountered on Page1 and the exception has bubbled up to be recovered in the Recover1 stage. The 'Yes' path has been taken from the "Throw new Exception?" decision stage. Consider the Throw Exception stage properties below:

How should the properties be configured for the Process to throw a new Business exception, i.e. a different exception to the one encountered in Page1?

  • A. Type Business Exception in the Exception Type field and type a custom message in the Exception Detail field.
  • B. Leave the Exception Type field blank and type "Business Exception" in the Exception Detail field.
  • C. Tick the Preserve the type and detail of the current exception checkbox. Leave the Exception Type and Exception Detail fields blank.
  • D. Configure Exception Type() in the Exception Type field and ExceptionDetail() in the Exception Detail field.
    Leave the Preserve the type and detail of the current exception checkbox un-ticked.

Answer: C

 

NEW QUESTION 46
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. Exhibit C
  • B. Exhibit B
  • C. Exhibit D
    For window application to ensure the new screen is in focus We need to activate the New screen as not the application.
  • D. Exhibit A

Answer: C

 

NEW QUESTION 47
Consider the following process flow from a sub-page of a process:

What is the problem with this sub-page flow?

  • A. The exception stage within the flow should be removed and replaced with an End stage that returns the found data item as an output parameter.
  • B. The sub-page process flow is missing any retry exception handling that should exist where a process calls object actions that interface with an application.
  • C. For better visibility of the process logic the flow steps shown in the image should be on the main page rather than in a sub-page of the process.
  • D. There is nothing wrong with the sub-page flow shown in this image

Answer: B

 

NEW QUESTION 48
Study the following image showing pan: of the flow within a process:

What problems do you see with the process flow? (select 2 responses)

  • A. If an exception is thrown in the Cancel Reservation page and is allowed to bubble up to be caught by the Recover stage, the Create Reservation action won't be retried.
  • B. There is a missing Recover stage on one of the routes through the flow.
  • C. There is a missing Resume stage on one of the routes through the flow.
  • D. The Retry Count is not being incremented for each retry.

Answer: B

Explanation:
Explanation
C,D

 

NEW QUESTION 49
The following Calculation Stage uses the Today function to get the current date as a date value and place it in a data item entitled "Today".

Which of the following statements is correct?

  • A. If the data item "Today" is configured with a Data Type of Date, an exception will be thrown on execution of the calculation stage
  • B. None of these statements are correct
  • C. If the data item "Today" is configured with a Data Type of DateTime, an exception will be thrown on execution of the calculation stage
  • D. If the data item "Today" is configured with a Data Type of Text, an exception will be thrown on execution of the calculation stage

Answer: D

 

NEW QUESTION 50
When considering an element's attributes in Application Modeller which of the following statements are true?
(select all that apply)

  • A. The initial selection of attributes made by Blue Prism will always be the optimum attribute set for the element
  • B. The attributes are provided to Blue Prism by the Target System
  • C. Selected attributes are shown as ticks in the Match column of Application Modeller Reason: A) when spying the application, blueprism fetch all the elements of the target application only, blue prism doesn't provide any elements of its own.
    C) Attributes are vary from application type to type. Attributes are different for windows, browsers, mainframe, java.
    D) Reason is below.
  • D. The list of attributes may vary from application type to application type

Answer: B,C,D

 

NEW QUESTION 51
Which of the following can you perform in Control Room? (select all that apply)

  • A. Encrypt a Work Queue
  • B. Create a Work Queue
  • C. Refresh a Work Queue
  • D. Rename a Work Queue

Answer: B

 

NEW QUESTION 52
......

Blue Prism Developer Fundamentals-AD01 Exam-Practice-Dumps: https://www.examslabs.com/Blue-Prism/Blue-Prism-Developer/best-AD01-exam-dumps.html

Use Real AD01 Dumps - Blue Prism Correct Answers: https://drive.google.com/open?id=1znd6cLlHoex6zbKobDhANnUSiC0VuXI6