✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Which statement is correct about the execution of the loop in
the following code fragment?
num = int(input("Please enter a number (0 when done): "))incr = 0while num != 0 : incr = incr + 1 num = int(input("Please enter a number (0 when done): "))print(incr)