Home
Pre-Lab
In-Lab
Post-Lab
|
Logical AND
The logical AND operator is a binary operator which evaluates to True if both of
its operands are True and evaluates to False otherwise. It is
symbolized in Java using && [2 ampersands].
Truth Table
| expression1 |
expression2 |
expression1 && expression2 |
| false |
false |
false |
| false |
true |
false |
| true |
false |
false |
| true |
true |
true |

|