For each of the following sums find the base 10 value of each of the
10-bit two's complement integers being added (note that several of the problems
use the same numbers so you only need to do a few conversions),
compute the two's complement sum, and find its base 10 value.
Determine if overflow occurred.
(a) 0 1 0 1 0 1 1 0 1 0
+ 1 0 0 1 0 0 0 1 0 1
--------------------
(b) 0 1 0 1 0 1 1 0 1 0
+ 0 0 1 1 0 0 0 1 1 0
--------------------
(c) 1 0 0 1 0 0 0 1 0 1
+ 1 1 1 1 0 1 1 1 1 0
--------------------
(d) 1 0 0 1 0 0 0 1 0 1
+ 1 1 0 1 1 0 0 0 0 0
--------------------
(e) 0 1 0 1 0 1 1 0 1 0
+ 1 1 1 1 0 1 1 1 1 0
--------------------