

InterviewSolution
Saved Bookmarks
1. |
The hexadecimal notation of (1011 0111 1011)2 is ___________(a) (B2B)16(b) (B5B)16(c) (B7B)16(d) (A7B)16I got this question in an online interview.The query is from Integers and Algorithms topic in chapter Algorithms of Discrete Mathematics |
Answer» CORRECT option is (c) (B7B)16 The best I can explain: (1011)2 = 11 and (0111)2 = 7, 11 in hexadecimal notation REPRESENTS B. So it is (B7B)16. |
|