Variables/Data Types
Loops
Operators
Miscellaneous
100

A true/false value

What is a boolean?

100

Code that repeats over and over.

What is a loop?

100

Operators that perform arithmetic operations (+, -, *, /)

What are arithmetic operators?

100

If Then Statement

What is a conditional?

200
A number without fractions or decimals (-1, 0, 30, -64)

What is an integer??

200

A loop that repeats code FOR a certain number of times

What are for loops?

200

Operators that compare different values

What are relational/comparision operators?

200

Study of computers and computation

What is computer science?

300

The 4 main data types

Boolean, String, Float, Integer

300

2 main types of loops

What are for loops and while loops?

300

The 3 main types of operators

What are logical, arithmetic, and relational operators?
300

Data driven programming model where programs are designed by objects that interact with each other

What is Object Oriented Programming? (OOP)

500

Term for data types that can store multiple values, such as lists, arrays, and tuples

What are iterables?

500

The variable that increases on every iteration of a loop

What is the counter variable?

500

Division operator that rounds the quotient down to the previous integer

What is floor division?

500
A sorting algorithm which repeatedly selects the smallest value and swaps it with next unsorted element

What is a selection sort?