Any algebrarelated by hand methods Develop an algorithm to a
Any algebra-related by hand methods?
Develop an algorithm to add two integers expressed in binary form. The rules for adding binary numbers are: 0 + 0 rightarrow 0, 0 + 1 rightarrow 1, 1 + 0 rightarrow 1, and 1 + 1 rightarrow 0 carry 1. For example, 5+12 is: Create a hand-written method, not code*Solution
Input : 2 binary numbers \'bnum1\' and \'bnum2\'
 Output : Sum \'bnum3\'
 
 A) d1= BinaryToDecimal(bnum1)
 B) d2= BinaryToDecimal (bnum2)
 C) d3=d1+d2
 D) bnum3= DecimalToBinary (d3)
Alternate:

