RPA Robotic Process Automation 2 — Questions and Answers
Question 1: Which RPA component is responsible for storing and managing reusable automation assets like credentials and queues?
- Orchestrator (Correct answer)
- Studio
- Robot
- Control Room
Correct answer: Orchestrator
The Orchestrator (or Control Room in some platforms) centrally manages assets, credentials, queues, and schedules for all robots.
Question 2: What is the primary difference between Attended and Unattended RPA robots?
- Attended robots require human interaction during execution; unattended run fully autonomously (Correct answer)
- Attended robots are faster than unattended robots
- Unattended robots can only run on virtual machines
- Attended robots do not require a license
Correct answer: Attended robots require human interaction during execution; unattended run fully autonomously
Attended robots work alongside humans and are triggered by user actions, while unattended robots run autonomously on scheduled or event-driven triggers.
Question 3: In RPA, what is a 'queue' used for?
- Storing work items that robots process in order (Correct answer)
- Scheduling robot login times
- Logging error messages
- Managing user permissions
Correct answer: Storing work items that robots process in order
Queues hold transaction items that one or more robots can pick up and process, enabling distributed workload management.
Question 4: Which selector property is considered MOST stable when automating a web application?
- ID attribute (Correct answer)
- CSS class name
- Element position on screen
- Text content
Correct answer: ID attribute
ID attributes are unique per element and unlikely to change across page loads, making them the most reliable selector anchor.
Question 5: What does 'ROI' measure in the context of an RPA business case?
- Return on Investment — financial benefit versus cost of automation (Correct answer)
- Rate of Implementation — how fast the bot is deployed
- Risk of Integration — likelihood of system failures
- Reusability of Instructions — how often a bot is reused
Correct answer: Return on Investment — financial benefit versus cost of automation
ROI compares the financial savings and benefits generated by RPA against the total cost of implementation and maintenance.
Question 6: Which type of RPA exception should trigger an immediate stop and alert rather than a retry?
- Business exception (e.g., invalid data format)
- System exception (e.g., application crash) (Correct answer)
- Both should always retry three times
- Neither; all exceptions should be logged silently
Correct answer: System exception (e.g., application crash)
System exceptions indicate environmental or application failures that retrying may worsen, so they typically require immediate escalation.
Question 7: What is 'process mining' commonly used for before implementing RPA?
- Discovering and analyzing actual process flows from event logs (Correct answer)
- Mining cryptocurrency using idle robot machines
- Extracting data from legacy databases
- Generating test cases for automation scripts
Correct answer: Discovering and analyzing actual process flows from event logs
Process mining uses event log data from IT systems to visualize and analyze real process execution paths, helping identify the best automation candidates.
Which RPA component is responsible for storing and managing reusable automation assets like credentials and queues?