Flash cards
Review the key moves
1/3
Core idea
What is the main idea behind C++ Logical Operators?
Lesson checks
Practice each idea before moving on
Short Mimo-style checks built from this lesson's code, terms, and sequence.
1Quick choice
Which statement best captures the main point of this lesson?
2Order
Put the learning moves in the order that makes the concept easiest to apply.
You will learn much more about true and false values in a later chapter.
Logical operators are used to determine the logic between variables or values:
As with comparison operators , you can also test for true ( 1 ) or false ( 0 ) values with logical operators .
Logical Operators
As with comparison operators , you can also test for true ( 1 ) or false ( 0 ) values with logical operators .
Logical operators are used to determine the logic between variables or values:
| Operator | Name | Description | Example |
|---|---|---|---|
| && | Logical and | Returns true if both statements are true | x < 5 && x < 10 |
| Logical or | Returns true if one of the statements is true | x < 5 | x < 4 |
| ! | Logical not | Reverse the result, returns false if the result is true | !(x < 5 && x < 10) |
You will learn much more about true and false values in a later chapter.