1.

The given table is for {:("Input","Output"),(A""B,Y),("00",1),("01",1),("10",1),("11",0):}

Answer»

OR GATE
NOR gate
AND
NAND gate.

SOLUTION :BOOLEAN expression for NAND gate is `y=bar(A.B)`
i.e., when A = 0 , B = 0 , then y = `bar(0.0)= bar0=1`
`A=0,B=1y=bar(0.1)=bar0=1`
`A=1,B=0y=bar(1.0)=bar0=1`
`A=1,B=1,y=bar(1.1)= bar1=1`
which is according to given TRUTH table.


Discussion

No Comment Found

Related InterviewSolutions