RPA (UI Path) 4 — Questions and Answers
Question 1: What is the purpose of the 'Delay' activity in UiPath?
- To pause workflow execution for a specified duration (Correct answer)
- To retry a failed selector lookup
- To synchronize two parallel workflows
- To wait for an Orchestrator queue item
Correct answer: To pause workflow execution for a specified duration
The Delay activity suspends the workflow for a set time (hours, minutes, seconds) before continuing to the next activity.
Question 2: Which UiPath Studio panel displays the properties and configurable parameters of the currently selected activity?
- Properties Panel (Correct answer)
- Variables Panel
- Output Panel
- Project Panel
Correct answer: Properties Panel
The Properties Panel shows all configurable fields for the selected activity, including input, output, and timeout settings.
Question 3: In UiPath, what does 'SimulateClick' do differently from a standard Click activity?
- It sends a click directly to the application's API without moving the mouse cursor, allowing background execution (Correct answer)
- It records the click for replay in test mode
- It uses image recognition instead of selectors
- It performs multiple clicks in rapid succession
Correct answer: It sends a click directly to the application's API without moving the mouse cursor, allowing background execution
SimulateClick injects the click event directly into the application, enabling execution even when the window is minimized or in the background.
Question 4: What is the function of 'UiPath Document Understanding'?
- Intelligently extracting structured data from unstructured documents like invoices, receipts, and forms (Correct answer)
- Converting workflow XAML files to PDF documentation
- Scanning for compliance issues in automation code
- Translating UI labels in multi-language applications
Correct answer: Intelligently extracting structured data from unstructured documents like invoices, receipts, and forms
Document Understanding uses AI and OCR to classify and extract fields from semi-structured or unstructured documents at scale.
Question 5: In UiPath Orchestrator, what is a 'Trigger' used for?
- Automatically starting a job on a schedule or when a queue item is added (Correct answer)
- Alerting admins when a robot disconnects
- Resetting robot credentials on a set interval
- Publishing a new package version from Studio
Correct answer: Automatically starting a job on a schedule or when a queue item is added
Triggers in Orchestrator launch jobs automatically based on time schedules (Time Triggers) or queue activity (Queue Triggers).
Question 6: Which UiPath activity would you use to read data from a specific cell range in an Excel file?
- Read Range (Correct answer)
- Get Cell
- Read Cell
- Excel Application Scope
Correct answer: Read Range
Read Range reads a contiguous block of cells from an Excel worksheet and outputs the data as a DataTable.
Question 7: What does 'attended automation' mean in the context of UiPath?
- A robot that works alongside a human user on the same machine, triggered manually or by user actions (Correct answer)
- A robot that runs overnight without any human present
- A cloud-hosted robot that processes queue items remotely
- A robot that requires a developer to monitor each step
Correct answer: A robot that works alongside a human user on the same machine, triggered manually or by user actions
Attended robots run on a user's desktop, assist with tasks in real time, and are typically triggered by the user via UiPath Assistant.
What is the purpose of the 'Delay' activity in UiPath?