Python Intro
Python Data Types
Operators
Python Syntax
Random
100

What is Python

What is a Programming Language

100

What are the four basic Python data types learnt at camp?

What is an Integer, Float, Boolean, String

100

What does the * 

What is multiplication
100

What is missing in this line of code:

print(hello world)

What is Quotations

100

What causes an infinite loop?

What is condition is always True

200

What do we call the rules that control the structure of the symbols, punctuation, and words of a programming language

What is Syntax

200

This data type only has two possible values

What is a Boolean

200

What does the modulus (%) operator do in Python

What is Return the Remainder
200

Why does Python understand print and not Print

What is Case sensitivity

200

What is the word that describes combining strings

What is Concatenation

300

What is the basic first line of code for beginners?

What is print("hello world")
300

What data type is: "True"

What is a String

300

What does the != operator do in Python

What is check that two things are different

300

What do you call the spaces in front of a block of code

What is indentation

300

What do we call a loop that run indefinitely?

What is a While Loop

400

What is Python named after

What is Monty Python

400

What data type would 1.0 + 2 return

What is a Float

400

What would this code result in:

print( (1<2 and 5<3) or (1>-1 and not False))

What is a True

400

What symbol comes after the condition of an if statement?

What is Colons (:)

400

What do you call increasing by a specific amount each time

What is Incrementing

500

What makes Python a good language for beginner programmers?

What is Python is written similar to English

500

What is the data type of the variable x after this code is executed:

x = type('3' + str(2))

What is a String
500

What type of operator is and, or, & not

What is Logical

500

In Python, this keyword is used to specify an alternative block of code to run when an if statement evaluates to False.

What is else?

500

What would the value of this expression be: 10+3*(12%8)

What is 22