Edit Game
break & continue
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   7  Close
What is the most important thing to remember when writing a while loop?
You need to make sure the loop's condition will eventually become False
What will this code print?
1 2
What does the continue keyword do in a loop?
It skips the rest of the code for the current turn and goes to the next turn of the loop.
What does the break keyword do in a loop?
It stops the loop completely, no matter what.
What happens if the condition for a while loop is always true?
The loop runs forever.
What numbers will this for loop print?
0, 1, 2
How many times will this while loop print "Yay!"?
3 times