Draw a half-adder using only NAND gates.
Truth table and expression for half adder
Sum= A XOR B
Carry= A AND B
Below is the truth table:
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
Implementation of Half adder using only NAND gate
PS: Please leave a comment in case any further assistance needed :)
Get Answers For Free
Most questions answered within 1 hours.