...(logical NOT)
For example, the following code assigns the value `true` to the variable `my_variable`:
```
my_variable = true && false;
```
##Using Boolean Variables in If Statements
Boolean variables can be used in if statements to control the flow of a program. For example, the following...