UiRPA Exam QuestionsBrowse all questions from this exam

UiRPA Exam - Question 40


Review the following exhibit:

Based on the exhibit, which output is produced in the Output panel?

Show Answer
Correct Answer: D

The process starts by initializing BoolFlag to True. It enters the While loop since BoolFlag is True, then it checks the If condition. Since BoolFlag is True, it writes 'Hello' and sets BoolFlag to False. When the execution comes back to the While loop condition, BoolFlag is now False, so the loop ends. Thus, only 'Hello' is printed.

Discussion

4 comments
Sign in to comment
iboshowOption: D
Apr 17, 2023

Ran this in UIPath, answer only returns the true text which is Hello

AutomationMasterOption: D
Mar 29, 2023

Option should be D as condition is true so will not go to the else part.

nicolaslp085Option: D
Feb 9, 2024

Writes Hello and ends the cycle

Yash04Option: D
Feb 28, 2024

Answer is D