Exam UiRPA All QuestionsBrowse all questions from this exam
Question 40

Review the following exhibit:

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

    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
iboshowOption: D

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

AutomationMasterOption: D

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

Yash04Option: D

Answer is D

nicolaslp085Option: D

Writes Hello and ends the cycle