The exclamation point (!) is the logical operator symbol for what
NOT
lines of code that change the flow of the program while it is running.
if statements
Any characters, symbols or numbers that are contained within quotation marks.
Strings
What are the 2 things you must do to use a variable in a code?
assign it & declare it
The comparison operator symbol for is equal to
== (double equal sign)
Boolean values can only equal what
True or False
Statements that only run when certain conditions are true.
Conditionals
To concatenate, use the _______ between values.
+ plus symbol
Assignment operators
Sets the value of a variable.
A data type that asks the computer if two things are equal or not, is known as
Equality Operator
This type of condition will only render a true value if both parts of the condition are met
&& AND conditions
Conditionals consist of what three parts:
variable, operator, comparator value
Variable names can not have what?
spaces or special characters
A symbol or word used to connect two or more expressions
Logical operator
Statements are meant to be used as an extension of the initial "if" statement. (2 answer response)
else and else if statements
Comparison operators only use these types of symbols !=, <=, and >= because
They only require ASCII symbols.