Convert from hexadecimal to binary and decimal. SHOW WORK
a) 0xB2 HexaDecimal Binary ------------------------- 0 0000 1 0001 2 0010 3 0011 4 0100 5 0101 6 0110 7 0111 8 1000 9 1001 A 1010 B 1011 C 1100 D 1101 E 1110 F 1111 Use the table to convert each hex digit 4 bit binary B in binary is 1011 2 in binary is 0010 So, B2 in binary is 10110010 B2 in decimal = 11*16 + 2 = 178 ============================= b) 0x11 1 in hex is 0001 So, 11 in hex = 00010001 11 in decimal = 16*1 + 1 = 17
Get Answers For Free
Most questions answered within 1 hours.