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