Two different logic gates giving output ' 1 ' for the inputs $(1,0)$ and then for $(0,1)$ are
Two different logic gates giving output ' 1 ' for the inputs $(1,0)$ and then for $(0,1)$ are
'AND', 'OR'
'OR', 'NOR'
'NAND', 'NOR'
'NAND', 'OR'
Solution
- NAND Gate:
- (1, 0): 1 AND $0=0$, so NAND gives 1 .
- $(0,1): 0$ AND $1=0$, so NAND gives 1 .
- This works (gives '1' for both inputs).
- OR Gate:
- $(1,0): 1$ OR $0=1$
- $(0,1): 0$ OR $1=1$
- This works (gives '1' for both inputs).