Edit Game
Python Basics
 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   13  Close
a=2 b=3 print(a*b)
6
The output of: print(50 - 10*4)
10
What is the type of this variable: length=163.2
long
What is the error here: print(Good morning)
print("Good morning")
name="Ali" print(name)
Ali
What programming language do we use: (Python, Java, C++, HTML)
Python
What is the type of this variable: is_students = True
Boolean
What is the output of: print("1"+"1")
11
What is the output of: print(1+1)
2
What is the error in the code: Print("Hello")
"Print" should be "print"
What is the missing word in the blank: ________("good morning")
print
What is the missing word in the blank: age = ________("enter your age: ")
input
What's is the output of this line: print("Hello World")
Hello World