what is the method to convert a number from hexadesimal to binary,binary to hehadesimal?
rajashekhar_hubli
2006-09-07 02:30:17 UTC
i want to know different number systems like binary,octal,hexadesimal,decimal etc.and converting value from one number system to another number (means equalant numbers in different number systems -,their representation and convertion)
thank you...
Four answers:
Truth Seeker
2006-09-07 02:44:05 UTC
Binary to Hex Conversion
It is easy to convert from an integer binary number to hex. This is accomplished by:
Break the binary number into 4-bit sections from the LSB to the MSB.
Convert the 4-bit binary number to its Hex equivalent.
For example, the binary value 1010111110110010 will be written:
1010 1111 1011 0010
A F B 2
------------------------------...
Hex to Binary Conversion
It is also easy to convert from an integer hex number to binary. This is accomplished by:
Convert the Hex number to its 4-bit binary equivalent.
Combine the 4-bit sections by removing the spaces.
For example, the hex value 0AFB2 will be written:
A F B 2
1010 1111 1011 0010
This yields the binary number 1010111110110010 or 1010 1111 1011 0010 in our more readable format.
whats up! someone in my facebook crew printed this web page so I got here to provide it a seem. i'm surely taking area in the counsel. i'm e book-marking and could be tweeting this to my followers!
2006-09-07 02:37:24 UTC
well that's easy
I am pasting some links down here, you can go through it
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.