Ask Question

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

10101011 + 11110000

+5
Answers (1)
  1. 24 June, 17:07
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers