Data Types
Variables
Conditionals
Loops
Functions and Algorithms
100

The data type that holds a whole number.

What is an Int?

100

The name of the memory location that we use for storing data.

What is a variable?

100

This conditional statement will run a block of code if the statement is true.

What is an If statement?

100

These are used to repeat blocks of code.

What is a loop?

100

This block of code has a name to it and can be used more than once by calling that name.

What is a function?

200

The data type that holds True or false.

What is a bool?

200

A type of variable that can be used anywhere in your code space.

What is a global variable?

200

This conditional statement will run a block of code if the statement is false.

What is an else statement?

200

This type of loop evaluates a condition before the block of code.

What is a While loop?

200

This statement handles many blocks of code at once and chooses one of them.

What is a switch statement?

300

The data type that holds a decimal.

What is a float?

300

A type of variable that can be used only in the code space it is in.  

What is a local variable?

300

This logical operation uses "!"

What is the symbol for "Not"?

300

This type of loop evaluates a condition after the block of code.

What is a Do-While loop?

300

A named variable that we pass into a function.

What is a parameter?

400

The data type that holds a single character.

What is a char?

400

This operation uses 1 equals sign.

What is the symbol for assigning a variable?

400

This logical operation uses "||".

What is the symbol for "Or"?

400

This type of loop holds a counter and finishes once the counter is done.

What is a For loop?
400

A set of steps used to complete a specific task.

 What is an algorithm?

500

The data type that holds multiple characters

What is a string?

500

This operation uses 2 equal signs.

What is the symbol for the equals operation?

500

This logical operation uses "&&"

What is the symbol for "And"?

500

A loop that is inside another loop

What is a nested loop?

500

This symbol goes at the end of every programming line.

What is a semicolon in programming?