Ask Question
24 September, 22:48

What is the sum of each pair of binary integers? (assuming 8-bit register is used)

10101011 + 11110000

+3
Answers (1)
  1. 25 September, 00:01
    0
    The sum will be 00011011.

    Explanation:

    In binary integers

    0+0=0

    0+1=1

    1+0=1

    1+1=10 1 is carry.

    On adding 10101011 and 11110000 we will get 100011011 that is a 9 bit number but we are using a 8 bit register so it cannot store this number so MSB 1 will not be included as it is the carry. So the answer is 00011011.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is the sum of each pair of binary integers? (assuming 8-bit register is used) 10101011 + 11110000 ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers