InterviewSolution
Saved Bookmarks
| 1. |
Add the following to binary number: a) 10110111 and 1100101 b) 110101 and 10111 c) 110111.110 and 11011101.010 d) 1110.110 and 11010.011 |
|
Answer» of adding the binary number:1000111001001100100010101.000101001.001Explanation:Binary addition is SIMPLER and easier, as they CONTAIN only 1’s and 0’s. Binary addition involves adding signed, unsigned and fraction based binary numbers. Adding binary fraction will be the same as adding signed binary numbers, EXCEPT that the interpretation of RESULTS varies.The rule for binary addition will be: 0 + 0 = 0, having no carrier value, 1 + 0 = 1, having no carrier value, 0 + 1 = 1, having no carrier value, 1 + 1 = 0, and having 1 as carrier value. |
|