UiPath Advanced RPA Developer Certification Exam 2026 |
Robotic Enterprise Framework (REFramework),
Orchestrator, Selectors, Exception Handling, Data Scraping,
Workflow Analyzer | with Rationales
Exam Structure:
Subject: Robotic Process Automation / UiPath Advanced Developer Certification
Source: UiPath Exam Questions – 2026
Format: Multiple-choice and open-ended questions with Correct Answers and
rationales
1. An expense report submission process, in which the first step
requires the user to log into the reporting system, must attach
scanned image receipts and PDF files as part of the expense. This
activity lends itself best to which of the following implementations?
Correct Answer: Process that uses a single attended robot
Rationale:
1. Attended robots work alongside humans and require human intervention
for tasks like logging in and attaching files.
2. The process requires user interaction (login, attaching files), which is ideal
for attended automation.
3. Unattended robots would not be suitable because the user must initiate the
process.
2. In contrast with attended robots, unattended robots are best used
with:
Correct Answer: complex, repetitive tasks
, 2|Page
Rationale:
1. Unattended robots run without human intervention.
2. They are ideal for high-volume, repetitive, rule-based processes.
3. Examples include batch processing, data migration, and background tasks.
3. Unattended robots run best when:
Correct Answer: - Tasks can be processed as a batch; - The automated
process must be run with special privileges or elevated rights; - A
predefined rule with clear descriptions describes the process
Rationale:
1. Batch processing maximizes efficiency of unattended robots.
2. Elevated rights allow automation of administrative tasks.
3. Clear rules enable fully automated decision-making without human
input.
4. Which of the following statements are true about UiPath Studio
Community Edition (CE)?
Correct Answer: - It has only self-managed updates, and always updates if
a new stable or preview is released; - It requires an online activation, so it
cannot be installed without an Internet connection; - It provides access to 2
attended robots and 1 unattended robot; - It can only connect to UiPath
Orchestrator Community Edition; - It has access to AI Computer Vision
Rationale:
1. Community Edition is free but has limitations compared to Enterprise
Edition.
2. Online activation is required for license validation.
3. Robot limits (2 attended, 1 unattended) are lower than Enterprise.
4. Orchestrator connection is limited to Community Edition.
5. What is the standard duration of a UiPath Studio Community
Edition trial?
Correct Answer: Unlimited
Rationale:
1. Community Edition is free for individual developers and has no time limit.
2. Enterprise Edition trial is 60 days.
3. The "trial" terminology applies to Enterprise Edition, not Community.
, 3|Page
6. Which of the following is true about programs written in UiPath
Studio Community Edition?
Correct Answer: Programs created in UiPath Studio Community Edition
are no different than programs created in the Enterprise Edition
Rationale:
1. Both editions use the same underlying technology and produce compatible
workflows.
2. The difference is in licensing, support, and deployment options.
3. Workflows created in Community Edition can be opened in Enterprise
Edition.
7. The UiPath Enterprise Server:
Correct Answer: - Is installed on a computer by the client through physical
software on standalone machines; - It is not compatible with UiPath Studio
Enterprise trial editions
Rationale:
1. Enterprise Server is installed on-premises by the customer.
2. It requires a licensed Enterprise Edition to connect.
3. Trial editions have limited compatibility with Enterprise Server.
8. A robot that is tied to a specific machine and not allowed to run on
any machine other than the one it is tied to in UiPath Orchestrator is
known as:
Correct Answer: A standard robot
Rationale:
1. Standard robots are provisioned to a specific machine.
2. They cannot run on other machines.
3. Floating robots can run on multiple machines.
9. You must pass exam data as an argument, but the data will be used
both inside and outside of the current workflow project. What should
the variable be named?
Correct Answer: io_Exam
Rationale:
1. Hungarian notation for arguments: "in" (input), "out" (output), "io"
(in/out).
, 4|Page
2. io_Exam indicates the argument is used for both input and output.
3. Following naming conventions improves code readability.
10. A robot that can be used by multiple users and run on multiple
workstations without being tied to a specific machine is known as
a(n):
Correct Answer: Floating robot
Rationale:
1. Floating robots are not tied to a specific machine.
2. They can run on any available workstation.
3. They are ideal for load balancing and high availability.
11. Which of the following are true about the UiPath Studio debugger
functions?
Correct Answer: - Only one Global Exception Handler can be set per
automation project; - The debugger will not operate if there are exceptions
in the project; - Debug activities are displayed as Trace logs in the Output
panel
Rationale:
1. One Global Exception Handler per project handles uncaught exceptions.
2. The debugger requires a compilable project to run.
3. Debug logs are written at the Trace level.
12. Which of the following is designed to allow developers to debug
their applications one activity at a time?
Correct Answer: Step into
Rationale:
1. Step into moves the debugger into the next activity (or called workflow).
2. It allows line-by-line execution.
3. Step over executes an activity without stepping into called workflows.
13. Which of the following is true about the retry button?
Correct Answer: It will restart your application from the beginning of the
previous activity when an exception is thrown
Rationale:
1. The retry button re-executes the activity that caused the exception.