Exam UiARD All QuestionsBrowse all questions from this exam
Question 161

A developer created a sequence with a Retry Scope shown in the following exhibit:

What is the content of the Output panel after running this sequence?

    Correct Answer: C

    The sequence increments the variable 'MyInt' by 1 in each retry until it meets the condition 'MyInt < 4'. Initially, 'MyInt' is 0. In the first iteration, 'MyInt' becomes 1 and the condition is not met, so it retries. In the second iteration, 'MyInt' becomes 2 and retries again. In the third iteration, 'MyInt' becomes 3 and retries once more. We should see 'MyInt' in the output panel showing 1, 2, and 3 before the process ends with a retry scope meeting the condition where 'MyInt' is less than 4.

Discussion
Engineer24Option: B

Tested in Studio !

lance21Option: B

Retry Scope- Retries the contained activities as long as the condition is NOT met or an error is thrown. https://docs.uipath.com/activities/other/latest/workflow/retry-scope

sur_bhi123456789Option: B

as the condition is met in the first run only so it will not be retried

[Removed]Option: B

Tested in Studio, B is the right one

[Removed]Option: B

Tested in Studio, B is correct