Operators
Condition
Conditionals
Functions
Variables
100

The exclamation point (!) is the logical operator symbol for what

NOT

100

lines of code that change the flow of the program while it is running.

if statements

100

Any characters, symbols or numbers that are contained within quotation marks.

Strings

100

What are the 2 things you must do to use a variable in a code? 

assign it & declare it

200

The comparison operator symbol for is equal to

== (double equal sign)

200

Boolean values can only equal what 

True or False

200

Statements that only run when certain conditions are true.

Conditionals

200

To concatenate, use the _______ between values.

+ plus symbol

200

Assignment operators

Sets the value of a variable.

300

A data type that asks the computer if two things are equal or not, is known as

Equality Operator

300

This type of condition will only render a true value if both parts of the condition are met

&& AND conditions

300

Conditionals consist of what three parts: 

variable, operator, comparator value

300

Variable names can not have what?

spaces or special characters

400

A symbol or word used to connect two or more expressions

Logical operator

400

Statements are meant to be used as an extension of the initial "if" statement. (2 answer response)

else and else if statements

500

Comparison operators only use these types of symbols !=, <=, and >= because

They only require ASCII symbols.