3.5 Compound Boolean Expressions
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
Logical Operators | Can be used to connect boolean expressions to make more complex expression. NOT ! AND && OR || |
Short Circuit Evaluation | When the result of a logical expression using && or || can be determined by evaluating only the first Boolean operand, the second is not evaluated. |
Nested if Statements | The process of placing if statements within if statements. |