Difference between revisions of "Logical or"
From Market Ruler Help
(Created page with "A '''Logical Or''' is the result of a series of conditions which, when '''any condition''' evaluates to '''true''', the result evaluates to '''true'''. The only time a '''Logi...") |
m |
||
Line 1: | Line 1: | ||
− | A '''Logical Or''' is the result of a series of conditions which, when '''any condition''' evaluates to '''true''', the result evaluates to '''true'''. The only time a '''Logical Or''' expression evaluates to '''false''' is when all conditions | + | A '''Logical Or''' is the result of a series of conditions which, when '''any condition''' evaluates to '''true''', the result evaluates to '''true'''. The only time a '''Logical Or''' expression evaluates to '''false''' is when all conditions evaluates to '''false'''. |
Specifically: | Specifically: |
Revision as of 23:58, 27 October 2018
A Logical Or is the result of a series of conditions which, when any condition evaluates to true, the result evaluates to true. The only time a Logical Or expression evaluates to false is when all conditions evaluates to false.
Specifically:
- true or true = true
- true or false = true
- false or true = true
- false or false = false