Well done!

You have completed Break and Continue Quiz!

Quiz Question 1 of 5

Given the following code snippet, how many times does the minute += 30 statement execute, and why?

hour = 8
minute = 0
while hour <= 9:
   while minute <= 59:
       print(hour, ":", minute)
       minute += 30
   hour += 1
   minute = 0

Choose the correct answer below:

Skip Quiz Review Instruction