Answers for "OR gate"

8

OR gate

0 | 0 | 0
 0 | 1 | 1
 1 | 0 | 1
 1 | 1 | 1
 AT LEAST ONE MUST BE TRUE
Posted by: Guest on December-07-2020
8

and gate

1 | 0 | 0
 1 | 1 | 1
 BOTH MUST BE TRUE
Posted by: Guest on March-10-2020
1

AND gate

AND GATE:
|A|B|Y|
|0|0|0|
|0|1|0|
|1|0|0|
|1|1|1|

// A: first Input
// B: Second Input
// Y: Output
Posted by: Guest on April-20-2021

Browse Popular Code Answers by Language