COMPUTER FUNDAMENTALS

DATA REPRESENTATION AND NUMBER SYSTEMS

BINARY OCTAL DECIMAL AND HEXADECIMAL NUMBER SYSTEMS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Convert the Hex number B9 to binary .
A
1011 1001
B
1011 1000
C
1011 1101
D
1010 1001
Explanation: 

Detailed explanation-1: -The hexadecimal equivalent of (101011110011011001)2 is (2BCD9)16. b) Determine the hexadecimal equivalent of (1100001.101011110011)2. The hexadecimal equivalent of (1100001.101011110011)2 is (61. AF3)16.

Detailed explanation-2: -Example − Convert binary number 1101010 into hexadecimal number. First convert this into decimal number: = (1101010)2 = 1x26+1x25+0x24+1x23+0x22+1x21+0x20 = 64+32+0+8+0+2+0 = (106)10 Then, convert it into hexadecimal number = (106)10 = 6x161+10x160 = (6A)16 which is answer.

There is 1 question to complete.