Blue Prism Professional Developer

Here you have the best Blue Prism APD01 practice exam questions

  • You have 45 total questions to study from
  • Each page has 5 questions, making a total of 9 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on November 14, 2024
Question 1 of 45

The following screen displays order details in a client's order system application. An order is entered into the Order number field and the details for that order are displayed. There is a requirement to read the Product code value from the resulting display. The Product code will vary between orders.

The Product Code label has been successfully spied and the following attributes have been returned:

The Product Code value field has been spied and the following attribute set has been selected:

In order to ensure a consistent match for the Screen Text "" Product Code element, which of the following statements must be considered:

1. The Dynamic value of the Y attribute for the Screen Text "" Product Code element must be derived from the Y attribute of the Label ""Product Code element

2. The Y attribute of the Label ""Product Code element cannot be derived as it is not checked

3. The Y attribute for the Screen Text "" Product Code element must be set to a Match Type of "˜Equal'

4. The Window Text attribute for the Screen Text "" Product Code element must be set to a Match Type of "˜Wildcard'

5. The Window Text attribute for the Screen Text "" Product Code element must be un-checked

    Correct Answer: D

    To ensure a consistent match for the Screen Text - Product Code element, the Dynamic value of the Y attribute should be derived from the Y attribute of the Label - Product Code element. Since the Y attribute of the Label - Product Code element is unchecked, it implies that it cannot be directly matched or derived. Additionally, unchecking the Window Text attribute for the Screen Text - Product Code element will allow flexibility as the Product code value can vary between orders and does not need to be matched explicitly. This makes statements 1 and 5 the correct choices.

Question 2 of 45

Which of the following Application Models follow Blue Prism Best Practice:

A.

B.

C.

D.

    Correct Answer:

    To determine which application model follows Blue Prism Best Practices, it's essential to consider the organization and clarity of the application elements. Blue Prism Best Practices emphasize the importance of clarity in application models by clearly delineating actions and differentiating element types such as inputs and buttons. Among the provided options, Application Model B is the most organized. It groups related elements together under clear headers like 'Log in Window', 'Options Window', 'New Order', and 'Order Confirmation', and specifies the types of elements (input, button, screen text). This organization enhances readability and maintainability of the automation project. Hence, the correct answer is B.

Question 3 of 45

Which of the following four configurations depicts the best approach for an Action that has been built to select a button to navigate to an Input Order screen?

A.

B.

C.

D.

    Correct Answer:

    The best approach for an action that selects a button to navigate to an Input Order screen involves ensuring that the system waits for the button's visibility, presses it, and then waits for the Input Order screen to appear. This ensures that the action is robust and can handle cases where the button or screen may take time to appear. Additionally, handling exceptions and timeouts ensures better error management. Configuration B depicts a comprehensive approach, including waiting for the order screen button, handling timeouts, and including stages for exception handling and recovery. Therefore, the correct answer is B.

Question 4 of 45

A Process Definition Document, for a new process to open ISA accounts, specifies that the value "2008 Cash ISA" is to be entered into the Product Selection field of the following screen:

The Product Selection field is a drop down menu with the following options available:

According to Best Practice, which of the following design options are correct for populating the Product Selection field with the value 2008 Cash ISA:

    Correct Answer: B

    The best practice for populating the Product Selection field with the value '2008 Cash ISA' is to use a text data item with an initial value of '2008 Cash ISA' and then use this data item as the input value to the stage that will populate the field. This approach ensures that the value can be easily maintained and changed if needed, without altering the process design. It also aids in maintaining the separation of data from the process logic, making the process more modular and easier to manage.

Question 5 of 45

A Process is fed cases to work from a spreadsheet held in a shared drive. The location of the shared drive is different between Development and Production environments. How should this be managed?

    Correct Answer: C

    To manage different file paths between Development and Production environments, the path to the spreadsheet should be stored as an Environment Variable. This allows the path to be set once per environment without changing the process itself. Environment Variables are ideal for values that differ between environments but remain constant during the process execution. This approach provides flexibility and simplicity in maintaining the process across different environments.