Method:Work right to left. Carry 1s into the next column when the sum exceeds 1.
Overflow Error
When the Result Is Too Large
An overflow error occurs when the result of a binary addition is too large to be stored in the available number of bits. The carry bit is lost, giving an incorrect result.
Key rule:Shift left n positions = multiply by 2ⁿ. Shift right n positions = divide by 2ⁿ. Vacated bits fill with 0.
Exam Practice
Have a go at this question
AQA-style question
(a) Add the binary numbers 01100011 and 00101110. Show your working and give the answer in binary. (b) The binary value 00001101 is left shifted by 2. What is the new denary value?