Exam4Training

UiPath UIPATH-ADPV1 UiPath (ADPv1) Automation Developer Professional Exam Online Training

Question #1

What are the primary functions of the UiPath Integration Service?

  • A . Enables automation with a library of connectors, manages connections easily with standardized authentication, kicks off automations with server-side triggers or events, provides curated activities and events, simplifies automation design.
  • B . Automates Ul design, manages API connections, provides limited activities and events, simplifies automation design.
  • C . Enables automation with API integration, manages connections with user-provided authentication, kicks off automations based on application-specific triggers, simplifies automation design with the help of third-party libraries.
  • D . Enables automation with Ul components, manages API keys, kicks off automations with client-side triggers, provides curated events.

Reveal Solution Hide Solution

Correct Answer: A
Question #2

What happens when closing a Remote Debugging Connection while a debugging execution is in progress?

  • A . The remote robot continues the execution after Studio closes the connection.
  • B . Debugging execution ends in exception, then the connection is closed.
  • C . Debugging execution stops gracefully, then the connection is closed.
  • D . It is not possible to close the connection while debugging is in progress.

Reveal Solution Hide Solution

Correct Answer: C
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #3

Where is the TransactionNumber incremented in the REFramework?

  • A . Only in the RetryCurrentTransaction.xaml workflow.
  • B . Only in the SetTransactionStatus.xaml workflow.
  • C . In the New Transaction transition.
  • D . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.

Reveal Solution Hide Solution

Correct Answer: B
Question #10

Arguments and Variables Information log entry – show values of the variables and arguments that are used.

  • A . Verbose
  • B . Trace
  • C . Critical
  • D . Information

Reveal Solution Hide Solution

Correct Answer: A

Question #11

How would you define a linear process in UiPath?

  • A . The steps of the process refer to the execution of steps in a sequential manner, where each subsequent step depends on the successful completion of the previous step.
  • B . The steps of the process are performed multiple times, but each time different data items are used.
  • C . The steps of the process repeat multiple times over different data items. However, the automation design is such that each repeatable part processes independently.
  • D . The process steps are performed only once. If the need is to process additional data, then the automation must execute again.

Reveal Solution Hide Solution

Correct Answer: D
Question #12

A developer is building a process that needs to click an element which requires a mouse hover to become visible. However, the element does not appear with the default click setting. The input method for the Click activity is Send Window Message.

Which property should the developer configure to be able to click the element?

  • A . The developer should change the input method to Simulate and the CursorMotionType to Instant.
  • B . The developer should change the input method to Hardware Events and the CursorMotionType to Smooth.
  • C . The property AlterlfDisabled should be set to False.
  • D . The property AlterlfDisabled should be set to True.

Reveal Solution Hide Solution

Correct Answer: B
Question #13

A developer wants to create an automation in which the input from the user and pre-defined conditions determine the transition between stages.

In UiPath Studio, which is the recommended type of workflow that meets the requirement?

  • A . Flowchart
  • B . Workflow
  • C . State Machine
  • D . Global Exception Handler

Reveal Solution Hide Solution

Correct Answer: A
Question #14

A developer configured the properties for a Click activity as shown below:

What happens if the activity cannot find its target at runtime?

  • A . An exception is thrown after 10 milliseconds.
  • B . An exception is thrown after 10 seconds.
  • C . The next activity is executed after 10 seconds.
  • D . The next activity is executed after 10 milliseconds.

Reveal Solution Hide Solution

Correct Answer: B
Question #15

What is the default priority value for the Job Priority field in UiPath Orchestrator when starting a job manually?

  • A . Inherited
  • B . Medium
  • C . High
  • D . Low

Reveal Solution Hide Solution

Correct Answer: A
Question #16

Consider testing a workflow that computes the sum of two numbers having the data driven test data from the Excel file below:

Expanding the functionality of the workflow to compute the sum of three numbers, the data needs to be updated as well to accommodate the new scenario:

What are steps to do that?

  • A . Click Right on the Test Case and select Update Test Data
  • B . Click Right on the Test Case and select Add Test Data.
  • C . Click Right on the Test Case and select Refresh Test Data
  • D . Click Right on the Test Case and select Remove Test Data.

Reveal Solution Hide Solution

Correct Answer: C
Question #17

Data from an Excel file is read into a data table named "dtEmployee", as displayed in the following graphic:

A developer needs to filter the data table to obtain all rows representing employees from the Finance and IT departments with a Salary under 30,000.

Which expression yields the desired outcomes?

  • A . dtEmployee.Select("([Department]=’IT’ AND [Department]=’Finance’) AND [Salary] < 30000")
  • B . dtEmployee.Select("[Department]=’IT OR [Department]=’Finance’ OR [Salary] < 30000")
  • C . dtEmployee.Select("[Department]=’IT’ OR [Department]= ‘Finance’ AND [Salary] < 30000")
  • D . dtEmployee.Select("([Department]=’IT’ OR [Department]=’Finance’) AND [Salary] < 30000")

Reveal Solution Hide Solution

Correct Answer: D
Question #18

A developer is building an automation that must interact with a destination remote computer reached by jumping through multiple RDP connections, as described by the following scenario:

– The Robot is installed on Machine A, which connects through RDP to Machine B.

– From Machine B another RDP connection is opened to Machine C, where the automation must be performed.

Which of the following scenarios is appropriate for the developer who wants to use UI Automation activities?

  • A . UI Automation can be used and the following are prerequisites:
    Machine A – install RDP extension.
    Machine B – install RemoteRuntime.msi.
    Machine C – install RemoteRuntime.msi.
  • B . UI Automation can be used and the following are prerequisites:
    Machine A – install RDP extension.
    Machine B – install RDP extension and RemoteRuntime.msi.
    Machine C – install RemoteRuntime.msi.
  • C . UI Automation can be used and the following are prerequisites:
    Machine A – no requirement.
    Machine B – no requirement.
    Machine C – install RemoteRuntime.msi.
  • D . UI Automation can be used and the following are prerequisites:
    Machine A – install RDP extension.
    Machine B – no requirement.
    Machine C – install RemoteRuntime.msi.

Reveal Solution Hide Solution

Correct Answer: B
Question #19

How does UiPath handle different dependency versions for multiple running processes that run at the same time?

  • A . Each running process automatically adapts to the available dependency version.
  • B . Each running process uses its own required version of the dependency.
  • C . All running processes use the latest version of the dependency available.
  • D . Running processes use the earliest compatible dependency version.

Reveal Solution Hide Solution

Correct Answer: B
Question #20

In order for a developer to utilize the default REFramework without relying on Orchestrator queues, what is the essential prerequisite to ensure that the project does not interact with Orchestrator?

  • A . Remove the Get Transaction Data state from the Main state machine. Remove the OrchestratorQueueName setting from Config.xlsx & change the variable type.
  • B . Eliminate the Get Transaction Data state from the Main state machine. Exclude the Get Transaction Item activity from the project & change the variable type.
  • C . Exclude the Get Transaction Item activity from the project. Eliminate the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.
  • D . Omit the OrchestratorQueueName setting from the Config.xlsx file. Exclude the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.

Reveal Solution Hide Solution

Correct Answer: C

Question #21

Which of the following describes the correct hierarchy of the elements in the Object Repository tree structure?

  • A . Version, Application, Screen, Ul Element.
  • B . Application, Version, Screen, Ul Element.
  • C . Application, Screen, Ul Element, Version.
  • D . Screen, Application, Version, Ul Element.

Reveal Solution Hide Solution

Correct Answer: C
Question #22

A developer wants to add items to a list of strings using the Invoke Method activity.

The list is declared as follows:

The Invoke Method activity has the following properties:

The Parameters property is as follows:

Based on the information shown in the exhibits what is the outcome of the Invoke Method activity?

  • A . An exception will be thrown.
  • B . Colors will contain an item with the value "Yellow".
  • C . Colors will contain an item with an empty value.
  • D . Colors will contain an item with the value "Colors: Yellow".

Reveal Solution Hide Solution

Correct Answer: B
Question #23

What is the default polling interval set for an event trigger?

  • A . 1 minute
  • B . 5 minutes
  • C . 10 minutes
  • D . 15 minutes

Reveal Solution Hide Solution

Correct Answer: B
Question #24

When should the Show Elements button be used in the Computer Vision wizard?

  • A . Highlighting all Ul elements that have been identified by the Computer Vision analysis.
  • B . Displaying a list of all available Ul elements and their properties.
  • C . Activating a real-time view of the target agp^s Ul during automation.
  • D . Filtering out specific Ul elements from being processed by the Computer Vision engine.

Reveal Solution Hide Solution

Correct Answer: A
Question #25

In a UiPath State Machine workflow, which section of State activity is used to specify conditional/triggers logic and multiple outgoing transitions in a state machine?

  • A . Entry
  • B . Transitions
  • C . Triggers
  • D . Exit

Reveal Solution Hide Solution

Correct Answer: B
Question #26

In a UiPath REFramework project, what is the primary purpose of using Custom Log Fields?

  • A . To maintain contextual insights within log messages, including secure details like credentials.
  • B . To add specific contextual information to log messages that are relevant to the automation process.
  • C . To modify the representation of logged contextual data as it is displayed in the Orchestrator.
  • D . To generate extra variables alongside log messages, enhancing workflow understanding.

Reveal Solution Hide Solution

Correct Answer: B
Exit mobile version