Convert the following 8bit binary numbers to decimal 1110101
Convert the following 8-bit binary numbers to decimal: 11101011 10000000 01000101 * Assuming that they are signed 2\'s complement numbers. * Assuming that the numbers are unsigned. (For example, as a signed number, 11110101B = -11; as unsigned number, 11110101B = 245).
Solution
a)11101011 = 235 (Decimal value)
b)10000000 = 128 (Decimal value)
c)01000101 = 69 (Decimal value)
Note:Please ask in case of any doubt.
