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