UiPath AI Specialist v1 — Question 138
What will be the outcome when executing a Try Catch activity with a sequence placed within the Try section and no Catches section present?
Answer options
- A. The sequence will result in a runtime error.
- B. Process execution will terminate only if the sequence throws an exception.
- C. Due to a validation error, the workflow will not execute.
- D. In case of an exception, a System Exception will be caught by default.
Correct answer: A
Explanation
When executing a Try Catch activity without any Catches section, any exception thrown within the Try section will lead to a runtime error, as there is no mechanism to handle it. Options B and D imply that exceptions can be managed, while C suggests a validation issue that is not relevant in this context.