AD01 Q31 To 60

Download as pdf or txt
Download as pdf or txt
You are on page 1of 24

QUESTION NO: 31

What is wrong with the flow shown in the image?


A. Sub-pages should not have retry logic, exception handling should be in the object level rather
than in the process.
B. The resume stage must also be within the exception block
C. The retry loop logic does not include any navigation after the resume stage to ensure the
application is ready to try the 'Search Screen -Perform Search' action again.
D. The retry loop logic shown in the image is incorrect because it uses multiple action stages.
There should be a retry loop around every action.

Answer: A

QUESTION NO: 32
Which of the following flows can you not create in Blue Prism? (select 2 responses)
A)

B)
C)

D)

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

Answer: D

QUESTION NO: 33
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. There is a missing Recover stage on one of the routes through the flow.
B. There is a missing Resume stage on one of the routes through the flow.
C. The Retry Count is not being incremented for each retry.
D. 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.

Answer: A

QUESTION NO: 34
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.

Answer: C

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

Answer: B

QUESTION NO: 36
Consider the following diagram from an object studio action:

What is the problem with this flow?


A. There is a risk of the flow causing an infinite loop
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. There is nothing wrong with the object flow shown in this image.
D. The Exception Block should be removed from the page so that all exceptions on that page can
be recovered.

Answer: A

QUESTION NO: 37
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 cause the Process to terminate
C. The Error will be recovered in the Recover2 Stage
D. The Error will cause the Process to jump to the End Stage

Answer: B

QUESTION NO: 38
Examine the flow below:

An error has been encountered on Page 1 and the exception has bubbled up to be recovered in the
Recoverd 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 Page?
A. Configure ExceptionType() 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.
B. Tick the Preserve the type and detail of the current exception checkbox. Leave the Exception
Type and Exception Detail fields blank
C. Leave the Exception Type field blank and type "Business Exception" in the Exception Detail
field.
D. Type Business Exception in the Exception Type field and type a custom message in the
Exception Detail field.

Answer: D

QUESTION NO: 39
Consider the following process flow from a sub-page of a process:
What is the problem with this sub-page flow?
A. There is nothing wrong with the sub-page flow shown in this image
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. 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.

Answer: C

QUESTION NO: 40
What is the Blue Prism Application Navigator
A. It is the spy tool that you drag around the application to identify attributes.
B. It is part of the zoom tool in Process and Object Studio that allows you to instantly jump to
different parts of the process map
C. It is the Studio list side-bar of Process and Objects.
D. It is Application Modeller functionality to create an application's entire element tree that when
selected will highlight individual elements in the application.

Answer: A

QUESTION NO: 41
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. A local text file should be used to easily configure the details of the HappyWeb website to be
used in each Blue Prism environment.
C. An Environment variable should be used to store the HappyWeb URL.
D. Three different versions of object that launches the HappyWeb website will need to be created
and maintained, one for each environment.
Answer: B

QUESTION NO: 42
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. 1 and 2
B. 2 only
C. 2 and 3
D. 1 and 4

Answer: A

QUESTION NO: 43
When designing a Blue Prism solution a Blue Prism architect must respect the requirement that
no customer data is visible within the Blue Prism database.
Consider these possible design alternatives:
1. No customer data in the work queue
2. Encrypt the data in the work queue
3. Switch off all stage parameter logging
Which combination of the above will guarantee that no customer data is visible in the Blue Prism
log file?
A. 1 only
B. 2 and 3
C. 1 and 3
D. None

Answer: B

QUESTION NO: 44
When building a solution to use Tags within a Work Queue, which of the following statements is
correct 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

Answer: C

QUESTION NO: 45
Study the process flow below:

The outputs for the Get Next Case are configured below:
A)

B)

C)

D)

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

Answer: D

QUESTION NO: 46
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. 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
B. 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
C. Something that identifies the source of work. Example of tags might include: Email, Web
Form, Excel Adhoc. Database
D. 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
E. Something that identifies the type of process scenario. Example of tags might include: Invalid
Product, Unrecognised customer, Goneaway Marker, Invalid Status
F. Details of an exception that has occurred. For example: The Login Screen was not found.

Answer: F

QUESTION NO: 47
The Work Queue "Customer Onboarding' has a number of Pending Items which may be tagged
as "Domestic", "Retail" or "Business" There is also a tag for the 8 digit product code formatted
as "Product Code: {product code}" e.g. Product Code: CA123456.
What is the correct configuration to get the next item from the queue that:
• Isn't applying for a loan product i.e. Product Code doesn't begin with "LN" And
• Is a domestic customer
A. Configure "Domestic; -Product Code: I_N"" in the Tag Filter parameter
B. Configure "Domestic; -Product Code: LN?" in the Tag Filter parameter
C. Configure 'Domestic and Product Code <> LN?" in the Tag Filter parameter
D. Configure "Domestic + [Product Code] <> LN*”” in the Tag Filter parameter

Answer: C

QUESTION NO: 48
Which of the following indicates a case in a Work Queue is waiting to be worked?
A)
B)

C)

D)

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

Answer: C

QUESTION NO: 49
Which of the following statements regarding the use of Worker Queues are correct? (select 2
responses)
A. Control Room allows filtering of the displayed queue items using exact tags and by using
wildcards
B. Wildcards are not allowed in the Tag Fitter property of the Work Queues business object Get
Next Item action
C. Work Queue item Status can only be set to Completed or Exception
D. Tags can be used allow flexibility in the order items are worked within a single Work Queue

Answer: AB

QUESTION NO: 50
Which of the following statements regarding the use of Work Queues are correct? (select 2
responses)
A. Control Room allows filtering of the displayed queue items using exact tags and by using
wildcards
B. Wildcards are not allowed in the Tag Fitter property of the Work Queues business object Get
Next Item action
C. Work Queue item Status can only be set to Completed or Exception
D. Tags can be used allow flexibility in the order items are worked within a single Work Queue

Answer: AB

QUESTION NO: 51
The Work Queue 'Account Closure has a number of Pending Items which may be tagged as
"Current", "Saving" or "Loan" What is the correct configuration to get the next item from the
queue that is tagged either "Current" or "Loan"?
A. Configure "Current or Loan" in the Tag Filter parameter
B. Configure "-Saving" in the Tag Filter parameter
C. Configure "Current; Loan: in the Tag Filter parameter
D. Configure "Current + Loan'" in the Tag Filter parameter

Answer: B

QUESTION NO: 52
Which of the following can you perform in Control Room? (select all that apply)
A. Refresh a Work Queue
B. Create a Work Queue
C. Encrypt a Work Queue
D. Rename a Work Queue

Answer: ABC

QUESTION NO: 53
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 should always be used. It eliminates the risk of contention and
allows you to gracefully pause the queue at any time.
C. 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
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

QUESTION NO: 54
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 "A"
B. The flow will pass through calculation stage "B"
C. The flow will pass through calculation stage "C"
D. An exception will be thrown

Answer: C

QUESTION NO: 55
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 data item Result will contain 5
C. The process will throw an exception
D. None of these statements are correct

Answer: A

QUESTION NO: 56
The data item New Date is a date data item with no initial value.
The calculation stage is configured as follows:
What will happen when you execute the Create Date stage?
A. 5 days will be added to today's date and the result stored in the New Date data item.
B. 1 month will be added to today's date and the result stored in the New Date data item.
C. 1 week will be added to today's date and the result stored in the New Date data item.
D. The process will throw an exception as the New Date data item is null.

Answer: B

QUESTION NO: 57
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. The flow will pass through calculation stage "A"
B. The flow will pass through calculation stage "B"
C. The flow will pass through calculation stage "C"
D. An exception will be thrown

Answer: B

QUESTION NO: 58
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 Text, an exception will be thrown
on execution of the calculation stage
B. If the data item "Today" is configured with a Data Type of Date, an exception will be thrown
on execution of the calculation stage
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. None of these statements are correct

Answer: A

QUESTION NO: 59
Study at 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 Account1 page until the error is
thrown and then focus would move to the "Recover 1 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 "Exception 1 stage.

Answer: C

QUESTION NO: 60
Study at 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 "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 will move to the "Recover 1 stage.
C. The process would will 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.
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.

Answer: B

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy