QuestionQ163

UiPath Automation Development

Given the following conditional breakpoint, where count = 0:

Question Image

Conditional breakpoint settings:

Question Image

How many times is UiPath displayed in the Output panel before the process enters a Paused state in Debug mode?

  • A 1
  • B 3
  • C 4
  • D 5
Explanation

The condition count Mod 2 = 0 is met at count values 0, 2, and 4. The hit count of 3 pauses execution when the condition is met for the third time, at count = 4. UiPath breakpoints pause before the marked activity executes, so the Write Line activity has completed only for count values 0 through 3, producing four Output entries.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!