Hardware Design Question:
Download Job Interview Questions and Answers PDF
Give the truth table for a Half Adder. Give a gate level implementation of the same.
Answer:
TRUTH TABLE FOR HALF ADDER:
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
IMPLEMENTATION:
For SUM, The two inputs A and B are given to XOR gate.
For Carry, The two inputs A and B are given to AND gate.
A B SUM CARRY
0 0 0 0
0 1 1 0
1 0 1 0
1 1 0 1
IMPLEMENTATION:
For SUM, The two inputs A and B are given to XOR gate.
For Carry, The two inputs A and B are given to AND gate.
Download Hardware Design Interview Questions And Answers
PDF
Previous Question | Next Question |
How do you detect a sequence of "1101" arriving serially from a signal line? | Design a divide-by-3 sequential circuit with 50% duty circle. |