UiPath Advanced RPA Developer (UiARD) — Question 18
A new blank project only has the Main.xaml file and consists of a single Throw activity. The activity is not enclosed in a Try Catch activity.
If this process is published and run from Orchestrator, what is the expected result?
Answer options
- A. Exception Pop-up is displayed on the robot machine.
- B. Job is completed with a "Stopped" state.
- C. Job is completed with a "Successful" state.
- D. Job is completed with a "Faulted" state.
Correct answer: D
Explanation
The correct answer is D because a Throw activity generates an exception, and without a Try Catch to handle it, the job will terminate with a 'Faulted' state. Options A, B, and C are incorrect because they do not accurately represent the outcome of an unhandled exception in this scenario.