Black Friday Special 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: bestdeal

How to Pass the Blue Prism ASD01 Exam: Comprehensive Designing Blue Prism Process Solutions Guide and Tips

Questions 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

Buy Now
Questions 2

It’s technically possible for one business object to call another. Outside ofusing utility objects are any of the following valid reasons why you would want to do this?

Options:

A.

No. objects should never call other objects.

B.

Yes but object calling other objects could lead to undesirable memory problems so care must be taken.

C.

Yes, tocreate a wrapper object as a vehicle for a reusable sequence of application logic.

D.

Yes, but only if the object is calling itself.

Buy Now
Questions 3

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.

ASD01 Question 3

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.

Buy Now
Questions 4

Pacific West Banking has a payments process that automatically receives pending payments from multiple regions into their payment system (Paytex).

Paytex contains a queue of cases awaiting payment. When processing the case manually an agent must use two other systems, the core banking system (DataPlus) and online account checker (FireWire).

The manual processing must perform the following steps:

  • Open the next case where the status is null in Paytex
  • Set the status to “In Progress” in Paytex
  • Validate source account in DataPlus
  • Confirm source funds in DataPlus
  • Checkfor fraud flags in Paytex
  • Confirm recipient IBAN details in Firewire
  • Perform payment in Paytex
  • Update case in Paytex queue. Add payment confirmation number to case and set status to “Completed”
  • Where cases cannot be fulfilled due to validation errors (e.g. invalid account details, insufficient funds, suspected fraud etc.) the customers will be contacted by the agent to resolve.

A proposed Blue Prism solution with the following properties has been created to automate the payment processing:

  • There willbe one Blue Prism process that will perform the steps described above.
  • Where a case is an exception the status will be set in Paytex to “Manual Review” in order that the manual team can pick up the case from Paytex and contact the customer and conclude the case.
  • It is anticipated that to meet the SLAs of the expected volumes up to 5 instances of the Blue Prism process will be required to run concurrently.
  • A Blue Prism work queue will be used to host the payments. The queue will be configured for only 1attempt per case and the key will be (region) & {source account number}.
  • The process will be started by the scheduler at 06:00 and will stop at 05:50.

ASD01 Question 4

ASD01 Question 4

Which of the following are correct? (Choose three.)

Options:

A.

There is a risk that a payment can be duplicated.

B.

The process should not be designed to use a Blue Prism Work Queue but use Paytex as the work queue.

C.

The process will not scale i.e. you cannot run multiple instances at the same time.

D.

The solution exposes sensitive personalinformation.

E.

The process should not be automated as it uses a third party web application.

F.

There is a risk that a payment can be orphaned.

Buy Now
Questions 5

The status of a Work Queue can be used as a method of recording that work has been done so far on a Work Queue item.

Please consider the following statements:

1. For MI, to easily see how far an item has beenworked.

2. To aid manual working of exceptions, providing the Item Status can inform staff what work is still outstanding on an item that needs manually.

3. To enable Work Queue items to be safely retried, a process can use the item status to know which updates have already been performed so that they are not repeated.

4. To record the Customer’s Surname

Options:

A.

2 only

B.

2 and 3 only

C.

1, 2 and 3 only

D.

1, 2, 3 and 4

Buy Now
Questions 6

Consider the following steps for a theoretical manual process.

  • Check in input folder any newfiles.
  • If there are no files check again later as files can arrive anytime, and there is no limit to the number of files that may come.
  • Open the next available file.
  • Take the first case.
  • Start System X and find the case details.
  • If the case can’t be found, move to the next one.
  • After finding the case in System X, fetch additional case details from System Y.
  • Again if the case can’t be found, move to the next one.
  • Analyse all the data to see if System Z should be updated.
  • If the data does not meet the requirements, add notes indicating this to System X and Y and move to the next case.
  • If the data does meet the requirements, update the case in System Z.
  • Add notes to System X and Y and move to the next case.
  • At the end of the file, go back andlook for another.
  • Stop checking for new files at 16:00 and finish any remaining cases.
  • When all work is complete create a report of the day’s exception cases.
  • Close down Systems X, Y and Z.

If the volume of incoming cases is such that 1 Resource PC can easily handle the workload, which of the following steps for an automated solution should be part of the ‘Preparation’ phase of an automated process?

Options:

A.

Check input folder, wait for files.

B.

Check input folder, wait for files, read file and load queue.

C.

Log into applications.

D.

Check input folder, wait for files, read file and load queue, log into applications.

Buy Now
Questions 7

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

ASD01 Question 7

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.

Buy Now
Questions 8

You are the Lead Developer tasked with delivering four processes for the same client. You have enough developers in the team to develop all the processes in parallel. All the processes have one application in common, another application is used by two processes and one process uses an application that none of the others do.

Which of the following statements is true?

Options:

A.

Other than the standard utilities, there should be 3 objects.

B.

Other than the standard utilities, there should be 4 objects.

C.

Other than the standard utilities, there should be 7 objects.

D.

It’s not possible to determine how many objects there should be.

Buy Now