change answer to T (#23966)

In logical OR operation (T OR T) is T not F. So change answer to T
This commit is contained in:
Sayali
2018-11-02 13:11:59 +05:30
committed by Aditya
parent 4e7d3e718e
commit fa22d1953c

View File

@ -107,7 +107,7 @@ Here is the truth table for the OR operator
| F | F | F |
| F | T | T |
| T | F | T |
| T | T | F |
| T | T | T |
Just like above the OR operator operates on two variables, notice that the only time the OR operator evaluates to True is when `x` & `y` negate eachother.