In an AND logic table, the output is only 1 (true) when both inputs are 1 (true). Here’s how the logic works for the AND operation:
- first input: 0, second input: 0 → output: 0
- first input: 0, second input: 1 → output: 0
- first input: 1, second input: 0 → output: 0
- first input: 1, second input: 1 → output: 1
Based on this, the only correct row for an AND logic table would be:
- first input: 1, second input: 1, output: 1
All other combinations mentioned would not yield an output of 1. Therefore, none of the rows listed except for the last one would be valid for an AND logic table.