Reorder the follow code.
number -= 2
print(number)
while ( number < 101):
number = 0
Correctly format the following function.
( , ):
print(firstName + " " + lastName)
Label each concept (marked in red) in the following for loop.
for i in range ( 10 , 40 , 3 ) :
for in range ( , , ):
Categorize if the loop is infinite or not



![]()
Infinite
Finite
What will the following code output?
