AND as an enable: data · enable — AND gate
edge casethe gate as a switch
Answer
Y column 0001
Why this example is worth doing
Rename the inputs and the gate becomes a component: with one input called enable and the other called data, AND passes the data through when enabled and forces 0 when not. Almost every clock-gating and bus-gating circuit in a real design is this. The page makes the naming explicit because students who have only seen A and B do not recognise the same gate when it turns up in a block diagram with functional labels, and that recognition is the whole point of learning the primitives.
Try your own input in the AND gate. Truth table, symbol and algebraic form for A·B, with a live two-input toggle.
How the answer is reached
Output table
| data | enable | Y |
|---|---|---|
| 0 | 0 | 0 |
| 0 | 1 | 0 |
| 1 | 0 | 0 |
| 1 | 1 | 1 |