-
Notifications
You must be signed in to change notification settings - Fork 0
AND
hpgDesigns edited this page Aug 8, 2021
·
1 revision
The AND operator gives true if both operands are true.
| A | B | A and B |
|---|---|---|
| false | false | false |
| false | true | false |
| true | false | false |
| true | true | true |
This is number 1