Loops & Iterations
Sign in to Google to save your progress. Learn more
Email *
Programme

What is wrong with this Python loop:

n = 5
while n > 0 :
    print(n)
print('All done')
1 point
Clear selection

What does the break statement do?

1 point
Clear selection

What does the continue statement do?

1 point
Clear selection

What does the following Python program print out?

tot = 0 
for i in [5, 4, 3, 2, 1] :
    tot = tot + 1
print(tot)
1 point
Clear selection

What is the iteration variable in the following Python code:

friends = ['Joseph', 'Glenn', 'Sally']
for friend in friends :
     print('Happy New Year:',  friend)
print('Done!')
1 point
Clear selection

What is a good description of the following bit of Python code?

zork = 0
for thing in [9, 41, 12, 3, 74, 15] :
    zork = zork + thing
print('After', zork)
1 point
Clear selection
What will the following code print out?

smallest_so_far = -1
for the_num in [9, 41, 12, 3, 74, 15] :
   if the_num < smallest_so_far :
      smallest_so_far = the_num
print(smallest_so_far)

1 point
Clear selection
What is a good statement to describe the is operator as used in the following if statement:

if smallest is None :
     smallest = value
1 point
Clear selection

Which reserved word indicates the start of an "indefinite" loop in Python?

1 point
Clear selection
How many times will the body of the following loop be executed?

n = 0
while n > 0 :
    print('Lather')
    print('Rinse')
print('Dry off!')
1 point
Clear selection
Submit
Clear form
This form was created inside of Kalinga Institute of Social Sciences. Report Abuse