This is the language computers use to understand instructions, made up of 0s and 1s.
What is binary?
This type of loop keeps repeating until a condition is met.
What is a while loop?
He co-founded Apple and helped invent the iPhone.
Who is Steve Jobs?
What is the coding language that starts with P
What is Python?
Name any coding language that is not Python
Java, C++, CSS, HTML, etc
What language was Minecraft coded in?
What is Java?
If you set x = 5, then print(x), this will appear
What is 5?
This is what "www" stands for in a web address.
What is World Wide Web?
This is the process of finding and fixing problems in code.
What is debugging?
This part of the computer allows you to interact by clicking on things on the screen.
What is the mouse?
He co-founded Microsoft and helped create the Windows operating system.
Who is Bill Gates?
This happens if you try to use a variable that hasn’t been defined.
What is an error?
If y = 10 and z = y + 5, this is the value of z.
What is 15?
This type of variable stores whole numbers, like 7 or 15.
What is an integer?
This is the name for a mistake in your code that causes it to not work properly.
What is a bug?
This is the term for the unique address that every website has, like "google.com."
What is a URL?
What type of statement is this following:
age = 16
if age < 13:
print("You're a kid!")
elif age < 18:
print("You're a teenager!")
else:
print("You're an adult!")
What is else-if statement
What type of statement is this:
age = 10
if age < 13:
print("You're a kid!")
What is if-statement
If x = 3 and y = 4, this is the value of x * y.
What is 12?
If a loop runs 10 times, but you want it to stop at 5, you use this command.
What is break?
This is the step-by-step set of instructions a computer follows to solve a problem.
What is an algorithm?
This is the name for a decision-making block in code, often using "if" or "else."
What is a conditional statement?
What statement is the following:
count = 5
while count > 0:
print(count)
count -= 1
print("Blast off!")
What is while loop?
A variable that stores either True or False is called this.
What is a Boolean?
This coding language is famous for its use in mobile apps and games, and shares its name with a type of coffee.
What is Java?