AND gate
An AND logic gate takes two input signals and produces an output signal that is
1 ONLY if both input signals are 1.
Truth table
The truth table for it looks like:
| Input A | Input B | Output (A AND B) |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |
An AND logic gate takes two input signals and produces an output signal that is
1 ONLY if both input signals are 1.
The truth table for it looks like:
| Input A | Input B | Output (A AND B) |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |