Variables
Conditionals
Functions
100

Holds one value at a time

What is a variable?

100

A symbol or word used to connect two or more expressions

What is a logical operator?

100

A command that executes the code within a function

What is a function call?

200

A variable type created from any characters and contained inside double quotes

What is a string?

200

Allows a program to change the value represented by a variable

What is an assignment operator?

200

A named group of programming instructions. Also referred to as a procedure.

What is a function?

300

A data type that is either true or false

What is a Boolean Value?

300

A statement joining two events together often written in the form of 'If something, then something'

What is a conditional statement?

300

What will be the order of letters printed to the console when this program is run?


What is "a b c b c"?

400

What number will be output by the console.log command on line 7?


What is 100?

400

A combination of operators and values that evaluates to a single value

What is an expression?

400

"You win!" never displays. What change would fix this issue?

What is Line 3 - remove "var"?

500

What number will be output by the console.log command on line 5?

What is 16?

500

The < (less than), > (greater than), <= (less than or equal), and >= (greater than or equal) comparisons

What are Comparison Operators?

500

This function chooses the screen to display based on the score. What is the correct way to call this function?


What is "checkWin();"?

M
e
n
u