answersLogoWhite

0

Every digit is a power of 16 in hexadecimal, so we have (in decimal):

Keep in mind A = 10, B = 11, ... F = 15.

7AB16 = 7 * 162 + 10 * 16 + 11 = 1792 + 160 + 11 = 1963.

To convert to binary, we look at powers of 2. Since the largest power of two that can be subtracted from 1963 is 1024, we know that we must go from 210 to 20. Thus we subtract the highest power of 2 that can be subtracted each time. In the brackets is the power of 2 that was subtracted.

1963 - 1024 = 939 (210)

939 - 512 = 427 (29)

427 - 256 = 171 (28)

171 - 128 = 43 (27)

43 - 32 = 11 (25)

11 - 8 = 3 (23)

3 - 2 = 1 (21)

1 - 1 = 0 (20)

When you've done this, list all of the powers from 10 to 0 and put a 1 if you did subtract that number.

10 9 8 7 6 5 4 3 2 1 0 Power of 2

..1 1 1 1 0 1 0 1 0 1 1 Was the number subtracted? (ignore the dots, they're used to pad)

Thus the number in binary is 11110101011.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is binary 100110 in hexadecimal?

It equates to 26 in hexadecimal.


What numerical value in hexadecimal is equivalent to the binary number 1101111010101101?

1101111010101101 in binary is equal to DEAD in hexadecimal.


Binary to hexadecimal to binary conversion?

Each 4 bits of binary can make 1 hexadecimal digit. There are 16 hexadecimal characters including zero. This can be shown by the equation 2^4 = 16.


Convert binary octal 864BF into hexadecimal?

Okay, I'm pretty sure that 864 binary is 30 hexadecimal. - RG


How are hexadecimal and binary related?

Each 4-digit string of binary digits is equivalent to 1 single hexadecimal digit.


What is the hexadecimal for 11111011010?

If the above is decimal then in hexadecimal it is 2964492C2. If it is binary then in hexadecimal it is 7DA. If it is octal then in hexadecimal it is 49241208.


Convert 110110.101 to hexadecimal?

Assuming the original was in binary, the answer is 36.A


How does the binary numbering system differ from the hexadecimal numbering system?

the binary system is base 2 and the hexadecimal system is base 16


What is the binary representation of the hexadecimal number 3D9?

The binary representation is : 1111011001


What is the hexadecimal symbol to the binary number 1010?

Binary(1010) = Hex(A)


What is the hexadecimal equivalent Ethernet address 01011010?

The binary number 01011010 is 005A in hexadecimal.


Binary to hexadecimal code?

Binary to hexadecimal conversion involves grouping binary digits into sets of four, as each hexadecimal digit represents four binary bits. For instance, the binary number 101110 can be split into 0010 (2 in hex) and 1110 (E in hex), resulting in the hexadecimal representation 2E. To convert, you can also use a calculator or programming language functions for efficiency. The process is essential in computing for simplifying binary data representation.