lowrez42 lowrez42 02-11-2020 Computers and Technology contestada When does the following while-loop stop running? var = 1 while var == 1 : num = num+1 print (num) A. As soon as num reaches the value of 10 B. After the first time through the loop it stops C. It never stops running D. None of the above