Reorder the follow code.
while ( number < 101):
number -= 2
print(number)
number = 0
What will the following code output?
Categorize if the loop is infinite or not
Infinite
Finite