100

This coding concept works by using a step-by-step order of instructions to solve a problem

What is an algorithm?

100

This is a tool that allows humans to communicate with computers

What is a coding language?

100

Examples of this are text-based and visual-based

What are types of coding languages?

200

This tells the computer to repeat an action until a condition is met

What is a loop?

200

This is known as a symbol that holds information

What is a variable?

200

This tells the computer what kind of information can be stored in a variable 

What is a data type?

300

This type of loop is best for situations where we know how many times we want the loop to iterate

What is a for-loop?
300

This data type includes all negative and positive whole numbers 

What is an integer?

300

This type of loop is best for situations where we don't know how many times we want the loop to iterate

What is a while-loop?

400

This data type only has two possible values- true or false

What is a boolean?

400

This data type includes all negative and positive numbers with decimal points

What is a float?

400

This data type is used to represent any sequence of characters, and is usually enclosed in double quotes

What is a string?