How many times will the following loop iterate?
i = 1
while true:
if i % 2 == 0:
break
a) 7 times
b) 6 times
c) 0 times
d) an infinite number of times