UiPath UIPATH-ADPV1 UiPath (ADPv1) Automation Developer Professional Exam Online Training
UiPath UIPATH-ADPV1 Online Training
The questions for UIPATH-ADPV1 were last updated at Nov 19,2024.
- Exam Code: UIPATH-ADPV1
- Exam Name: UiPath (ADPv1) Automation Developer Professional Exam
- Certification Provider: UiPath
- Latest update: Nov 19,2024
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.
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.
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
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.
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
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.
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")
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.
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.
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.