InterviewSolution
Saved Bookmarks
| 1. |
2 s complement examples |
|
Answer» OkExplanation:For example, 1's complement of binary number 110010 is 001101. To get 2's complement of binary number is 1's complement of given number PLUS 1 to the least SIGNIFICANT BIT (LSB). For example 2's complement of binary number 10010 is (01101) + 1 = 01110. |
|