Logical conjunction: AND
- Last UpdatedJul 23, 2024
- 1 minute read
Returns TRUE if both discrete operands are TRUE; otherwise, returns FALSE. The truth table for this operator is as follows:
|
p |
q |
p AND q |
|---|---|---|
|
F |
F |
F |
|
F |
T |
F |
|
T |
F |
F |
|
T |
T |
T |
Valid operands
Any Discrete value.
Data type of return value
Discrete