InterviewSolution
Saved Bookmarks
| 1. |
Write the 1’s complement procedure. |
|
Answer» Step 1 : convert given decimal number into Binary Step 2 : if the binary bit contains 8 bits if less add 0 at the left most bit, to make it as 8 bits. Step 3 : Invert all the bits, (i.e.) change 1 as 0 and 0 as 1. |
|