lowrez42 lowrez42 Today at 11:18 AM Computers and Technology Answered 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