RPA (UI Path) 3 — Questions and Answers
Question 1: In UiPath, which workflow layout type is best suited for sequential step-by-step processes without complex branching?
- Sequence (Correct answer)
- Flowchart
- State Machine
- Global Exception Handler
Correct answer: Sequence
Sequences display activities in a linear, top-to-bottom order and are ideal for straightforward, step-by-step automations.
Question 2: What is 'UiPath Action Center' primarily used for?
- Enabling human-in-the-loop tasks where a person must review or complete a step before automation continues (Correct answer)
- Monitoring robot CPU and memory usage
- Generating automated test cases for workflows
- Managing deployment of new robot versions
Correct answer: Enabling human-in-the-loop tasks where a person must review or complete a step before automation continues
Action Center allows robots to pause and assign tasks to human users for review, approval, or data entry before resuming automation.
Question 3: Which UiPath recording mode captures both keyboard and mouse interactions with web applications?
- Web Recording (Correct answer)
- Desktop Recording
- Citrix Recording
- Basic Recording
Correct answer: Web Recording
Web Recording mode is optimized for browser-based applications and captures clicks and keystrokes using reliable browser-aware selectors.
Question 4: In UiPath's REFramework, what happens when the robot encounters a Business Rule Exception?
- The transaction is marked as failed with a Business Exception and the robot moves to the next transaction (Correct answer)
- The robot retries the transaction up to the configured max retry count
- The entire process is terminated immediately
- The robot sends an email and waits for manual intervention
Correct answer: The transaction is marked as failed with a Business Exception and the robot moves to the next transaction
Business Rule Exceptions indicate data-level issues; REFramework catches them, marks the transaction as BusinessException, and processes the next item without retrying.
Question 5: What is the default project type created when you start a new automation in UiPath Studio?
- Process (Correct answer)
- Library
- Test Automation
- Template
Correct answer: Process
A Process project is the default type and is used to build end-to-end automation workflows that can be deployed to Orchestrator.
Question 6: Which UiPath component is responsible for storing and running published automation packages on robots?
- Orchestrator (Correct answer)
- UiPath Studio
- UiPath Assistant
- UiPath Insights
Correct answer: Orchestrator
Orchestrator manages deployment, scheduling, monitoring, and execution of automation packages on connected robots.
Question 7: In UiPath, which data type would you use to store a collection of key-value pairs where keys must be unique?
- Dictionary (Correct answer)
- List
- Array
- Queue
Correct answer: Dictionary
A Dictionary<TKey, TValue> stores unique key-value pairs and allows fast lookups by key.
In UiPath, which workflow layout type is best suited for sequential step-by-step processes without complex branching?