Go on dividing the number by 16 and name 10 as A, 11 as B and so on.
For eg, 28 in base 10 = 1C because if you divide 28 you will get 1 with remainder 12. Hexamate 12 as C. Thus 28=1C.
2006-10-11 00:37:50
·
answer #1
·
answered by Anonymous
·
0⤊
0⤋
Hexadecimal follow the pattern
Eg Hex number 123 = 16^2*1 + 16^1 * 2 + 16^0 *3
= 256*1 + 16*2 + 1*3
= 256 + 32 +3
= 291 ( In Decimal System)
To convert a Decimal into Hexadecimal .
Divide the number by 16 and write the remainder of each step in serial (Left to Right , replace 10 with A , 11 with B , 12 with C , 13 With D 14 with E and 15 with F ) and you wll get the hexadecimal number.
2006-10-11 05:31:42
·
answer #2
·
answered by The Zing Thing 1
·
1⤊
0⤋
divide the number by 16 - write the remainder as the last digit and proceed with the quotient as follows;
divide the quotient by 256 (16 squared) - write the remainder as the last-but-one digit amd proceed with the quotient as follows;
divide the quotient by 4096 (16 cubed) - write the remainder as the last-but-two digit and proceed with the quotient as follows;
...
note that the digits in a hexadecimal systems are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A (=10), B (=11), C (=12), D (=13), E (=14) and F(=15);
examples:
16 = 16 + 0 = 10 (hex)
27 = 16 + 11 = 1B (hex)
32 = 32 + 0 = 20 (hex)
35 = 32 + 3 = 23 (hex)
284 = 256 + 16 + 12 = 11C (hex)
555 = 512 + 32 + 11 = 22B (hex)
and so on ...
2006-10-11 05:49:14
·
answer #3
·
answered by Anonymous
·
0⤊
0⤋
Hexa decimal number is from 0-9,A-F.
So divie your number by 16 Continouslly. The reminders you get is the hexadecimal number
2006-10-11 06:20:36
·
answer #4
·
answered by anna malai 1
·
1⤊
0⤋
Don't look for a method, just know what you're talking about...
You have a number. Compare that number to increasing powers of 16 until you get higher than that number. Drop down to the one before that power. Divide you number by that power (ignoring the remainder), that's your first digit. Then divide the remainder by the next lower power (again ignoring the remainder) and there's your second digit. Keep going until you don't have any number left.
2006-10-11 05:25:14
·
answer #5
·
answered by tgypoi 5
·
0⤊
1⤋
consider a number in decimal
100
so to convert it to hexa decimal devide it by 16
100/16=96
rem =4; qou=6
hence 100 in hex is 64
2006-10-12 03:00:51
·
answer #6
·
answered by sameer 2
·
0⤊
0⤋
i cant tell u the exact process, but u can use the calculator in "Windows"---start>prog.>acceser>calculator.
1>>>>choose the scientific mode from "VIEW" menu.
2>>>>then input the DECIMAL no. u want to convert into HEXA.
3>>>>click on the "HEX" radio button at the extreme left of the calculator.
4>>>>u will get the answer.
2006-10-11 05:42:53
·
answer #7
·
answered by Deb 3
·
0⤊
1⤋