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?
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?
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.
Tested in Studio !
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
as the condition is met in the first run only so it will not be retried
Tested in Studio, B is the right one
Tested in Studio, B is correct