Edit Game
Algorithm & Programming
 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   20  Close
Which loop is more suitable for processing each item in a list?
For Statement
When is break most appropriately used?
Condition is MET
Which control structure is best to check multiple conditions?
if–elif–else
Which keyword is used to repeat code while a condition is true?
While Statement
What does break do in a loop?
stop the execution
What is the purpose of an if statement?
Decision making
When does a while loop stop running?
When the condition is false
What will this code output?
1,2,3,4,5,6,7,8,9
Which loop is best when the number of repetitions is known in advance?
For statement
Which of these would work as a piece of code?
if answer=="Yes" :
What symbol is used in python to assign values to a variable?
equals =
What is the word (command) used to display numbers and text on the screen?
Print
The number or word we give to a variable
Value
Which of the following is an integer?
2
Which Data Type would the following be stored as:--- " Biscuit "
String
A price such as £3.65 should be saved as which data type?
Float
This data type is used to store whole numbers
Integer
Which data type is used to store: "D"
String
Which data type is used to store: TRUE
Boolean
Which data type is used to store: 100
Integer