Weekend Sale Discount Flat 70% Offer - Ends in 0d 00h 00m 00s - Coupon code: 70diswrap

Blue Prism ASD01 Dumps

Page: 1 / 3
Total 27 questions

Designing Blue Prism Process Solutions Questions and Answers

Question 1

AnInsurance company has created 4 Blue Prism processes:

1. Change of Address

2. Claims Processing

3. Renewals

4. Order Letter

The Order Letter process is not a published process but is called as a sub process by each of the 3 other processes.

Each day at6am a scheduler starts:

  • 3 instances of the Renewals process on the same virtual machine
  • 2 instances of the Claims Processing process on 2 different virtual machines
  • 1 instance of the Change of Address process on its own virtual machine

How many licenses will be consumed by the running processes?

Options:

A.

7

B.

6

C.

4

D.

3

Question 2

SanQuest Bank’s call center regularly receives requests fromcustomers for the exact amount required to clear their loan. This is a complicated calculation that is prone to human error. The bank has decided to use Blue Prism to perform the calculation and is considering amending its front end system OneBase to allowa user to click a button to request a Loan Consolidation Amount.

They plan to communicate with Blue Prism using web services. Consider the two proposed designs:

as

Here a Blue Prism object is exposed as a web service. OneBase calls this service providingthe account number. The Blue Prism object add the case to a work queue and then returns the Case ID to complete the web service call.

A Blue Prism process works the queue and harvests the data required to perform the calculation. The same Blue Prism process calls a OneBase web service and provides the load settlement figure. OneBase completes the web service call by returning a success flag.

as

Here the Blue Process that harvests the data is exposed a web service with the loan settlement figure as an output. OneBase calls the web service and provides the account number. The BluePrism process harvests the data and completes the web service call by providing the loan settlement figure.

Considering Blue Prism best practice which of the following statements is correct?

Options:

A.

Design A is the most appropriate option

B.

Design B is the most appropriate option

C.

Neither Design A nor Design B is appropriate

D.

Both Design A and Design B are appropriate

Question 3

The following Object Design has been created for a mainframe banking application.

as

Which of the following statements about the Object design above are correct? (Choose two.)

Options:

A.

The Add Note action in the “BankHost – Notepad” business object does not require an input for Type as the process definition document states that ‘Information’ will always be selected for this process.

B.

The object design facilitates a scalable design that will reduce the impact of change when the object layer needs altering.

C.

The object design should be simplified by storing all BankHost actions in the same object.

D.

There is no need for attach actions to be replicated across all the objects.

E.

The design complies with Blue Prism design best practice.

Question 4

MedBank have recently introduced a new Credit Card platform Cred+. There is a requirement to migrate account and card details from the existing banking platform PCBS on to Cred+.

Account IDs of the cases requiring data transfer will be held on a SQL database. The requirement is that, for each account ID specified on the SQLdatabase, the following data must be read from the PCBS application and input into the Cred+ application:

  • Account ID
  • Product Type
  • Name
  • Address
  • Date of Birth
  • Card PAN (Primary Account Number or credit card number)
  • Card Issue Date
  • Card Expiry Date

Once the data has been successfully input into Cred+ the correct record on the SQL database will be updated to indicate data transfer is complete. All work queues will be encrypted, however due to the sensitivity of the data, MedBank insist that a single robot account does not have access to both PCBS and CRED+ systems.

The following high level design has been proposed:

as

Which of the following statements about the solution design are correct? (Choose two.)

Options:

A.

If the PCBS application suffers anoutage, all Blue Prism processes specified in this design must stop processing immediately.

B.

The solution enables multiple instances of the Get PCBS Data and Update Cred+ processes to run without risk of collision.

C.

There is a risk that the outcome ofa data transfer will not be recorded in the SQL database.

D.

To reduce the elapsed time of the end to end process, the Get Cases process should be run across multiple machines.

E.

The Process Get PCBS Data should be stopped if the Cred+ application suffersan outage to prevent a backlog of cases in the PCBS Data work queue.

F.

Such sensitive data should not be stored in a Blue Prism work queue.

Question 5

Which of the following statement combinations about Blue Prism memory management is correct?

Options:

A.

A Blue Prism Process reads a Business Object into memory as required. Once the called Action is complete, the Process releases the memory for the .Net Garbage Collector to reclaim.A Blue PrismProcess reads a Sub Process into memory as required. Once the called Sub Process is complete, the Process releases the memory for the .Net Garbage Collector to reclaim.

B.

A Blue Prism Process holds a Business Object in memory for the duration of its run.ABlue Prism Process reads a Sub Process into memory as required. Once the called Sub Process is complete, the Process releases the memory for the .Net Garbage Collector to reclaim.

C.

A Blue Prism Process holds a Business Object into memory as required.Once the called Action is complete, the Process releases the memory for the .Net Garbage Collector to reclaim.

D.

A Blue Prism Process holds a Sub Process in memory for the duration of its run.A Blue Prism Process holds a Business Object in memory for the duration of its run.

Question 6

Consider the following high-level design. Thesolution is intended to read medical data from one application in order to update another. An input file is prepared by an overnight batch run for the solution to work through each morning before patients arrive. Usually the input file is fairly small butat certain times each month the file is much larger.

as

Which of these options should be considered be the process solution designer to guarantee the quality of the end-to-end solution? (Choose four.)

Options:

A.

Once in production the processcontroller should ensure that the process is only ever run on one Resource PC.

B.

The solution should log in to the applications before starting the case working loop.

C.

The solution should split the file into pieces to distribute to each Resource PC.

D.

The solution should log out from applications after existing working loop.

E.

Each Resource PC should be set to take a different row from the others, e.g. RPC-A works rows 1, 4, 7, 10 etc., RPC-B works 2, 5, 8 etc. and RPC-C works 3, 6, 9 etc.

F.

The solution should start by loading the file data into a work queue.

G.

The file should be updated at the start of each case to prevent other RPCs from working it.

Question 7

ProSafe credit reference agency retrieves data from bank and other credit providers where customers have missed payments or gone into default. The data isvery sensitive and fed directly into a Blue Prism work queue via a web service. Blue Prism process must process the data within 4 hours. The Blue Prism solution runs continuously and each case takes approximately 30 seconds to process. It is expected thatan average of 10,000 cases per day will be required and up to 10 Blue Prism robots are available. The Blue Prism solution is sown below:

as

For each case of the process will access the customer account in the HotRisk system and, where an account exists, harvest the data which will be fed along with the Work Queue data into a rules engine. The rules engine is a Blue Prism process that does not interact with any target system. It merely consumes data and, via a complicated series of decision and choice stages, determines the new customer risk factor.

There is to be no scheduler used. Instead the Process Controllers who work in shifts to provide 24 hour support will stop and start process instances in line with Work Queue volumes.

As a Blue Prism process solution designer, who is reviewing the solution, which of the following would concern you? (Choose three.)

Options:

A.

The solution is not scalable.

B.

The process does not have an end stage.

C.

The rules engine has been built in a process not an object.

D.

Theprocess opens and closes the HotRisk system for each case.

E.

The data is too sensitive for automated processing.

F.

There is no scheduler.

Question 8

A process is required for a client in the banking sector that involves using an application to transfer funds between accounts. A strong security model is in place to prevent any malicious activity but the client is nervous about the risk of external problems, like a power cut leaving a case in an incomplete state or a fault in thesource data causing a case to be duplicated or an excessively large transfer to be made.

What should be included in the solution design? (Choose three.)

Options:

A.

A different queue for each major processing step.

B.

A different process for each majorprocessing step.

C.

A single queue that is cleared of all worked items at the start of each day.

D.

Rules to limit transaction values.

E.

A key value that will uniquely identify queue items.

F.

A requirement that the solution is never run on more than onemachine.

G.

An exception handling procedure to track manual referrals.

Page: 1 / 3
Total 27 questions