In an AND logic table, the output is 1 only when both inputs are 1. Here’s the expected output for a two-input AND gate:
- 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 valid row for an AND logic table from your options would be:
- first input: 1, second input: 1, output: 1
All other rows given have incorrect outputs (output should be 0 instead of 1).