00:00

QUESTION 11

HOTSPOT
A developer is building a process which reads invoice data from the "mvoices.csv " file that includes a Total column of type Double.
Instructions: Using the drop-down lists shown in the following exhibit, configure the Filter Data Table Wizard to keep all invoices with a Total value that is over 10 000 USD.
UiPath-ADAv1 dumps exhibit
Solution:
To configure the Filter Data Table Wizard to keep all invoices with a Total value that is over 10 000 USD, you should choose the following options from the drop-down lists:
Column: Total Operation: > Value: 10000
The reason for choosing these options is to filter the data table based on the condition that the Total column value is greater than 10000. This will keep only the rows that satisfy this
condition and remove the rest. You can learn more about the Filter Data Table activity and how to use it from the following sources:
✑ Four Ways to Filter Data Tables in UiPath Studio | UiPath
✑ How to Filter Data Table - Help - UiPath Community Forum
✑ Filter Data table with specific column - UiPath Community Forum

Does this meet the goal?

Correct Answer: A

QUESTION 12

When configuring the Max # of retries for the queue in Orchestrator to "1" for your process, and the queue has 5 transaction items. At runtime, the first transaction item throws a
Business Rule Exception.
How does the process proceed?

Correct Answer: B
When a transaction item throws a Business Rule Exception, it means that the item does not meet the business requirements and cannot be processed further1. Therefore, the transaction item is marked as failed and not retried, regardless of the Max # of retries setting for the queue2. However, the process does not stop and continues with the remaining transaction items in the queue3.
References:
✑ Business Exception vs System Exception forum post, Answer by @loginerror
✑ RE Framework MaxRetryNumber and Orchestrator Queue Max # Rertry, again forum post, Answer by @Arpit_Kesharwani

QUESTION 13

Which of the following options is correct about a State Machine layout?

Correct Answer: C
A State Machine layout is a type of workflow that allows developers to create complex and dynamic automation processes that can branch based on user input or predefined conditions. A State Machine layout consists of states, transitions, and triggers. A state represents a specific step or action in the process, a transition defines the direction of the flow between states, and a trigger determines when a transition should occur. A State Machine layout can have only one initial state, which is the starting point of the process, and multiple final states, which are the possible end points of the process. (UiPath Automation Developer study guide)
References:
✑ State Machines
✑ State Machine Layout

QUESTION 14

A project built using REFramework pulls phone numbers from a database of employees and creates queue items for each one. Following processing, these elements must be added to a financing
application. The queue item holding a phone number becomes invalid if a digit is accidentally left out because of a human mistake. As a requirement, queue items that contain partial numbers should not be accepted.
What type of error should be thrown according to best practices?

Correct Answer: A
A business exception is an exception that occurs due to a fault in the business process logic or data, such as invalid input, incorrect format, missing information, etc. Business exceptions are usually predictable and can be handled gracefully by logging the error and moving to the next transaction. In this case, a queue item that contains a partial phone number is an example of a business exception, as it is caused by a human mistake and does not affect the functionality of the application or system. (UiPath
Automation Developer study guide)
References:
✑ Business Exception vs System Exception
✑ Exception Handling

QUESTION 15

Which of the following demonstrates the correct syntax for using the Vb.Net "If" Operator?

Correct Answer: A