InterviewSolution
Saved Bookmarks
| 1. |
The 2’s complement representation of (−539)10 in hexadecimal is(A) ABE(B) DBC(C) DE5(D) 9E7 |
|
Answer» Answer: (C) Explanation: -53910 = 1 010 0001 10112 ( Leftmost 1 denotes negative ) One’s complement = 1 101 1110 0100 Two’s complement = 1 101 1110 0101 Converting this two’s complement to hexadecimal form, we get DE5. |
|