Edit Game
Syntax Recall
 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   11  Close
To solve a problem that requires the user to enter 10 numbers would use what type of iteration?
For Loop
What will the output be from the following code? print("3*4+5")
3*4+5
The following code example would print the data type of x, what data type would that be?
String
Create a variable named carname and assign the value Volvo to it.
carname = Volvo
Insert the missing part of the code in this red box
print
What does INT means in python?
WholeNumber
Which statement will check to see if a is equal to b?
if a==b :
Which Python statement will check to see if a is greater than b?
if a>b :
What is python?
programming language
If you want more than one option for your code, what do you use (after if)?
else
The number or word we give to a variable
VALUE