<< Click to Display Table of Contents >> OR |
Logical OR is denoted with either the | character ("vertical bar"), or the / character ("slash").
It defines a relationship between two variables or other expressions, for example:
V1/V2
V1|V2
The complete expression is true if at least one of the conditions is true. Please refer to the table below.
V1 |
V2 |
V1/V2 |
---|---|---|
False |
False |
False |
False |
True |
True |
True |
False |
True |
True |
True |
True |