. Determine the sum (c) and the output carry (Cout) of a half-adder when the input bits are 1 and 1. b. A full-adder has Cin = 1. What are the sum (c) and the output carry (Cout) when A = 1 and B = 1? c. With the aid of diagram, what are the sum outputs when 111 and 101 are added by the 3-bit parallel adder?
1) Half adder
A B Sum Carry
Sum= 0 0 0 0 0
carry=1 0 1 1 0
1 0 1 0
1 1 0 1
2)Full adder
A B C Sum Carry
sum=1 0 0 0 0 0
carry=1 0 0 1 1 0
0 1 0 1 0
0 1 1 0 1
1 0 0 1 0
1 0 1 0 1
1 1 0 0 1
1 1 1 1 1
3) Given circuit is parallel adder
Results for FA1
Results for FA2
Results for FA3
4) Comparator
Comments