answersLogoWhite

0

Do it by the position:

1 X (16X16X16) = 4096

5 X (16X16) = 1280

B X (16) = 176

3

Now add them all up: 4096+1280+176+3 = 5555

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

What does hexadecimal base 16 convert binary equal?

16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.


WRITE A Program to convert integar to hexadecimal in c language?

Use the %X modifier of printf.Code Example:#include int main(void) { unsigned int iMyNumber = 255; printf("The number %u interpreted as hexadecimal is %X.\n", iMyNumber, iMyNumber); return 0; }


Hexa to octal?

The best way is to first convert hexadecimal to binary and then to octal. For example the hexadcimal number B4EA is in binary: B 4 E A 1011 0100 1110 1010 Thus B4EA (hexadecimal) = 1011010011101010 (binary) We add leading zeros to the binary number in order to be able to divide the number in sets of 3 digits. Then we convert easy to octal as follows: 001 011 010 011 101 010 1 3 2 3 5 2 Therefore 1011010011101010 (binary) = 132352 (octal) and from here you have your result: B4EA (hexadecimal) = 132352 (octal)


What is 0dh and 0ah?

0dh and 0ah are hexadecimal (base-16) representations of the decimal numbers 0 and 10, respectively. The "h" suffix indicates that the number is in hexadecimal format. In decimal, 0 is simply 0, and 0a (or 0ah) corresponds to the decimal value of 10.


What is the difference between 0x1 and 0x01 in c language?

0x means hexadecimal (base-16). Just like in decimal, 1 and 01 are the same number.