Variables/Data Types
Loops
Operators
Miscellaneous
100

Any number WITHOUT a fractional or decimal part. (eg. 1, 7, -10, 0)

What is an integer?

100

Code that repeats over and over.

What is a loop?

100

+, -, *, /.

What are arithmetic operators?

100

The code that you run

What is input?

200

A true or false value.

What is a boolean?

200

Code that repeats something a certain number of times.

What is a for loop?

200

==, !=, >, <, >=, <=

What are relational operators?

200

The results of the code you ran

What is output?

300

Any combination of characters including spaces.

What is a string?

300

Code that only repeats stuff as long as a condition is true.

What is a while loop?

300

and, or, not

What are logical operators?

300

Telling a computer what to do

What is computer programming?

500

Any number WITH a decimal point/fraction. (eg. 3.14, -1/2, 5.0)

What is a float?

500

The two main types of loops.

What are for and while loops?

500

=

What is an assignment operator?

500

A set of steps to complete a task

What is an algorithm?