Column 1
Column 2
Column 3
Column 4
Column 5
100

This is the language computers use to understand instructions, made up of 0s and 1s.

What is binary?

100

This type of loop keeps repeating until a condition is met.

What is a while loop?

100

He co-founded Apple and helped invent the iPhone.

Who is Steve Jobs?

100

What is the coding language that starts with P

What is Python?


100

Name any coding language that is not Python

Java, C++, CSS, HTML, etc

200

What language was Minecraft coded in?

What is Java?

200

If you set x = 5, then print(x), this will appear

What is 5?

200

This is what "www" stands for in a web address.

What is World Wide Web?

200

This is the process of finding and fixing problems in code.

What is debugging?

200

This part of the computer allows you to interact by clicking on things on the screen.

What is the mouse?

300

He co-founded Microsoft and helped create the Windows operating system.

Who is Bill Gates?

300

This happens if you try to use a variable that hasn’t been defined.

What is an error?

300

If y = 10 and z = y + 5, this is the value of z.

What is 15?

300

This type of variable stores whole numbers, like 7 or 15.

What is an integer?

300

This is the name for a mistake in your code that causes it to not work properly.

What is a bug?

400

This is the term for the unique address that every website has, like "google.com."

What is a URL?

400

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


400

What type of statement is this:



age = 10

if age < 13:

    print("You're a kid!")


What is if-statement

400

If x = 3 and y = 4, this is the value of x * y.

What is 12?

400

If a loop runs 10 times, but you want it to stop at 5, you use this command.

What is break?

500

This is the step-by-step set of instructions a computer follows to solve a problem.

What is an algorithm?

500

This is the name for a decision-making block in code, often using "if" or "else."

What is a conditional statement?

500

What statement is the following:


count = 5

while count > 0:

    print(count)

    count -= 1

print("Blast off!")


What is while loop?

500

A variable that stores either True or False is called this.

What is a Boolean?

500

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?

M
e
n
u