UiPath UiADPv1 Exam Practice Questions (P. 3)
- Full Access (194 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #11
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 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?
- AdtEmployee.Select("([Department]='IT' AND [Department]='Finance') AND [Salary] < 30000")
- BdtEmployee.Select("[Department]='IT OR [Department]='Finance' OR [Salary] < 30000")
- CdtEmployee.Select("[Department]='IT' OR [Department]= 'Finance' AND [Salary] < 30000")
- DdtEmployee.Select("([Department]='IT' OR [Department]='Finance') AND [Salary] < 30000")Most Voted
Correct Answer:
D
D
send
light_mode
delete
Question #12
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?
- 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?
- AUI Automation can be used and the following are prerequisites:
Machine A - install RDP extension.
Machine B - install RemoteRuntime.msi.
Machine C - install RemoteRuntime.msi. - BUI 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.Most Voted - CUI Automation can be used and the following are prerequisites:
Machine A - no requirement.
Machine B - no requirement.
Machine C - install RemoteRuntime.msi. - DUI Automation can be used and the following are prerequisites:
Machine A - install RDP extension.
Machine B - no requirement.
Machine C - install RemoteRuntime.msi.
Correct Answer:
B
B

For the given multi-level RDP scenario, Machine A needs the RDP extension to initiate a reliable remote session. Machine B, acting as a midpoint in the connection chain, requires both the RDP extension for forwarding the remote session efficiently and the RemoteRuntime.msi to facilitate UI automation commands from Machine A. Finally, Machine C, the target of the automation tasks, needs the RemoteRuntime.msi installed to execute these commands effectively. This setup ensures stable connectivity and functionality across all machines involved in the automation.
send
light_mode
delete
Question #13
How does UiPath handle different dependency versions for multiple running processes that run at the same time?
- AEach running process automatically adapts to the available dependency version.
- BEach running process uses its own required version of the dependency.Most Voted
- CAll running processes use the latest version of the dependency available.
- DRunning processes use the earliest compatible dependency version.
Correct Answer:
BReference: https://forum.uipath.com/t/how-to-run-multiple-processes-sequences-with-out-dependency/111593
BReference: https://forum.uipath.com/t/how-to-run-multiple-processes-sequences-with-out-dependency/111593
send
light_mode
delete
Question #14
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?
- ARemove the Get Transaction Data state from the Main state machine. Remove the OrchestratorQueueName setting from Config.xlsx & change the variable type.
- BEliminate the Get Transaction Data state from the Main state machine. Exclude the Get Transaction Item activity from the project & change the variable type.
- CExclude the Get Transaction Item activity from the project. Eliminate the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.Most Voted
- DOmit the OrchestratorQueueName setting from the Config.xlsx file. Exclude the three SetTransactionStatus activities from the SetTransactionStatus workflow & change the variable type.
Correct Answer:
C
C

To ensure that the REFramework operates without Orchestrator queues, it's pivotal to eliminate any components that explicitly interact with Orchestrator queues. Specifically, you must remove the Get Transaction Item activity, which fetches data items from the queues. Additionally, the SetTransactionStatus activities, which update transaction status in Orchestrator, should also be removed. Renaming relevant variable types after these changes is essential to prevent errors and align with the non-queue data management approach. This adjustment ensures smooth operation independent of Orchestrator queues.
send
light_mode
delete
Question #15
Which of the following describes the correct hierarchy of the elements in the Object Repository tree structure?
- AVersion, Application, Screen, UI Element.
- BApplication, Version, Screen, UI Element.Most Voted
- CApplication, Screen, UI Element, Version.
- DScreen, Application, Version, UI Element.
Correct Answer:
C
C

Based on user feedback and referenced UiPath documentation, the hierarchy actually follows this order: Application, Version, Screen, UI Element. This suggests that answer 'B' is correct, highlighting the importance of consulting the latest documentation for accuracy in understanding the structure of the Object Repository in UiPath.
send
light_mode
delete
All Pages