Please enable JavaScript.
Coggle requires JavaScript to display documents.
CONVERSION OF SYSTEM NUMBER (DECIMAL TO BINARY (Alternative Converter : …
CONVERSION OF SYSTEM NUMBER
DECIMAL
TO BINARY
Alternative Converter :
Subtract the largest possibe power of two and keep subtracting the next largest possible power form the remainder. Marking 1 in each column where this ispossibe and 0 where it is not.
Desired base is 2, so we repeatedly divide the given decimal number by
2
BINARY
TO DECIMAL
In binary number , the column weights (again from right to left).
DECIMAL TO HEXADECIMAL
Desired base is 16, so we repeatedly divide the given
decimal number by 16.
HEXADECIMAL TO DECIMAL
Example :
= 5x163 + 0x162 + Ax161 + Fx160
= 5x163 + 0x162 + 10x16 + 15x160
= 20480 + 0 + 160 + 15
= 20655
-Use 16 power of 0,1,2,3....
-Multiply each Hexadecimal number with 16 power of 0,1,2,3...
-Sum all the number that have been multiple.
BINARY TO HEXADECIMAL
• Step 1 : Convert binary to decimal
• Step 2 : Convert decimal to hexadecimal
Alternative solution:
HEXADECIMAL TO BINARY
• Step 1 : Convert hexadecimal to decimal
• Step 2 : Convert decimal to binary
Alternative Solution :