Vocabulary
Mathematical Expressions
Boolean Expressions
Conditionals
This N That
100

an abstraction inside a program that can hold a value

a variable

100

a finite set of instructions that accomplish a specific task

am algorithm

100

the value of a boolean expression

true or false

100

determines which parts of an algorithm are executed based on a condition being true or false

Selection

100

repeating a portion of an algorithm

iteration

200
a common method for referencing the elements in a list or string using natural numbers

an index

200

the application of each step of an algorithm in the order in which the code statements are written.

sequencing

200

>=

greater than or equal to

200

the other name for a conditional statement

if statement

200

While loops repeat until the condition evaluates to ______

True

300

an ordered sequence of elements

a list

300

+, -, *, x, and MOD

arithmetic operators

300

||

or

300
when true or when false? no action is taken 

false

300

What type of loop is designed to execute a certain number of times?

for loop

400

an individual value in a list that is assigned a unique index

an element

400

What is the value of y in the expression below?

var y = 3 + 4 * 2;

11

400

&&

and

400

conditional statement found within another conditional statement

nested conditional

400

How many statements would a conditional statement have to have to account for the movie rating system? G to R?

4

500

an ordered sequence of characters

a string

500

What is the value of x in the expression below?

var x = 12 % 5;

2

500

!=

not equal

500

What phrase follows the if statement in a true or false conditional statement

else

500

occurs when the ending condition will never evaluate to true (it never stops)

infinite loop

M
e
n
u