UiPath UiPath-ADAv1 UiPath Automation Developer Associate v1 Exam Online Training
UiPath UiPath-ADAv1 Online Training
The questions for UiPath-ADAv1 were last updated at Jun 22,2025.
- Exam Code: UiPath-ADAv1
- Exam Name: UiPath Automation Developer Associate v1 Exam
- Certification Provider: UiPath
- Latest update: Jun 22,2025
DRAG DROP
What are the steps to publish a project from UiPath Studio?
Instructions: Drag the Description found on the "Left" and drop on the correct Step Sequence found on the "Right".
What is the default priority value for the Job Priority field in UiPath Orchestrator when starting a job manually?
- A . Medium
- B . Low
- C . Inherited
- D . High
Which of the following demonstrates the correct syntax for using the Vb.Net "If" Operator?
- A . If(condition1, valuelfTrue, valuelfFalse)
- B . If(condition1, valuelfTrue) Elself(valuelfFalse)
- C . If condition1 Then valuelfTrue Elself valuelfFalse
- D . valuelfTrue If condition1 Else valuelfFalse
DRAG DROP
How should the computation of the signature be done for client apps that receive Orchestrator requests and need to check their authenticity?
Instructions: Drag the Description found on the left and drop on the correct Step Sequence found on the right.
When installing UiPath Studio, which of the following actions require administrator privileges?
- A . Administrator privileges are not required for installing UiPath Studio.
- B . Administrator privileges are required for installing the robot in both service mode and user mode.
- C . Administrator privileges are required for installing the robot in user mode.
- D . Administrator privileges are required for installing the robot in service mode.
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’ AND [Salary] < 30000")
- C . dtEmployee.Select("([Department]=’IT’ OR [Department]=’Finance’) AND [Salary] < 30000")
- D . dtEmployee.Select("[Department]=’IT’ OR [Department]=’Finance’ OR [Salary] < 30000")
Where is the TransactionNumber incremented in the REFramework?
- A . Only in the SetTransactionStatus.xaml workflow.
- B . In the End Process state in the Finally section of the Try Catch activity.
- C . In the RetryCurrentTransaction.xaml workflow and in the SetTransactionStatus.xaml workflow.
- D . In the New Transaction transition.
What is the output type returned when using a Get Test Data Queue Item activity?
- A . Dictionary
- B . Dictionary
- C . Object
- D . Queueltem
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 – no requirement.
Machine C – install RemoteRuntime.msi. - B . UI Automation can be used and the following are prerequisites:
Machine A – no requirement.
Machine B – no requirement.
Machine C – install RemoteRuntime.msi. - C . 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. - D . 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.
A developer implemented a process using the Robotic Enterprise Framework and an Orchestrator queue. The MaxRetryNumber from the "Config.xlsx" file is set to "1" and the Max # of retries from the Queue settings from Orchestrator is set to "2". At runtime, the first transaction item throws a Business Exception.
How many times will the transaction be retried?
- A . The transaction will be retried only one time.
- B . The transaction will not be retried.
- C . The transaction will be retried 2 times.
- D . The transaction will be retried multiple times, until it will be processed successfully.