Give 6 examples of comparison operators.
What data type do comparison expressions evaluate to?
boolean
What is the purpose of an if statement?
The IF statement executes one set of code if a specified condition is met (TRUE) or another set of code evaluates to FALSE.
Is else required in order to use an if statement?
no
Describe the syntax (structure) of an if statement.
What are the three logical operators?
How do you compare two different expressions in the same condition?
Use the logical operator && or ||.