<< Click to Display Table of Contents >> AND |
Logical AND is denoted with the & character ("and").
It defines a relationship between two variables or other expressions, for example:
V1&V2
The complete expression is true only if both conditions are true. Please refer to the table below.
V1 |
V2 |
V1&V2 |
---|---|---|
False |
False |
False |
False |
True |
False |
True |
False |
False |
True |
True |
True |