Edit Game
Python Loops Questions
 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   6  Close
When do you use a definite iteration?
This is used when the number of iterations, or turns of the loop, is known in advance
When do you use a indefinite loop?
An indefinite loop is used when the number of times a loop will need to be repeated is not known in advance
When do you use a definite loop?
A definite loop is used when you know in advance how often the instructions in the body of the loop are to be repeated
What are the types of loops?
definite and indefinite
What are loops?
Loops are used to make a computer repeat a set of instructions more than once.
What is selection?
The selection construct is used to create a branch in a program. The computer selects which branch to follow based on the outcome of a condition, using an IF…TH