What is Python
What is a Programming Language
What are the four basic Python data types learnt at camp?
What is an Integer, Float, Boolean, String
What does the *
What is missing in this line of code:
print(hello world)
What is Quotations
What causes an infinite loop?
What is condition is always True
What do we call the rules that control the structure of the symbols, punctuation, and words of a programming language
What is Syntax
This data type only has two possible values
What is a Boolean
What does the modulus (%) operator do in Python
Why does Python understand print and not Print
What is Case sensitivity
What is the word that describes combining strings
What is Concatenation
What is the basic first line of code for beginners?
What data type is: "True"
What is a String
What does the != operator do in Python
What is check that two things are different
What do you call the spaces in front of a block of code
What is indentation
What do we call a loop that run indefinitely?
What is a While Loop
What is Python named after
What is Monty Python
What data type would 1.0 + 2 return
What is a Float
What would this code result in:
print( (1<2 and 5<3) or (1>-1 and not False))
What is a True
What symbol comes after the condition of an if statement?
What is Colons (:)
What do you call increasing by a specific amount each time
What is Incrementing
What makes Python a good language for beginner programmers?
What is Python is written similar to English
What is the data type of the variable x after this code is executed:
x = type('3' + str(2))
What type of operator is and, or, & not
What is Logical
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?
What would the value of this expression be: 10+3*(12%8)
What is 22