change answer to f (#23918)

In logical AND operation ( t & f ) the result should be f not t
This commit is contained in:
Sayali 2018-11-01 13:31:21 +05:30 committed by Manish Giri
parent 7a51e27367
commit 5c4864ae00

View File

@ -11,7 +11,7 @@ A&&B returns True if both A and B are True. If either A or B (or both) are False
| f| t | f |
| f| f | f |
| t| t | t |
| t| f | t |
| t| f | f |
**OR (||)** </br>