There Are many methods to convert number system to other number System here there are few shortcuts methods to covert one number system to another number system
- Binary to Octal
- Octal to Binary
- Binary to Hexadecimal
- Hexadecimal to Binary
1. Binary to Octal
Steps
- Divide the binary digits into groups of three (starting from the right).
- Convert each group of three binary digits to one octal digit.
Example
Binary Number 101012
Calculating Octal
Equivalent
Step
|
Binary Number
|
Octal Number
|
Step 1
|
101012
|
010 101
|
Step 2
|
101012
|
28 58
|
Step 3
|
101012
|
258
|
Binary Number 101012 = Octal
Number 258
2. Octal to Binary
Steps
- Convert each octal digit to a 3 digit binary number (the octal digits may be treated as decimal for this conversion).
- Combine all the resulting binary groups (of 3 digits each) into a single binary number.
Example
Octal Number 258
Calculating Binary
Equivalent
Step
|
Octal Number
|
Binary Number
|
Step 1
|
258
|
210 510
|
Step 2
|
258
|
0102 1012
|
Step 3
|
258
|
0101012
|
Octal Number 258 =
Binary Number 101012
3. Binary to
Hexadecimal
Steps
- Divide the binary digits into groups of four (starting from the right).
- Convert each group of four binary digits to one hexadecimal symbol.
Example
Binary Number 101012
Calculating hexadecimal
Equivalent
Step
|
Binary Number
|
Hexadecimal Number
|
Step 1
|
101012
|
0001 0101
|
Step 2
|
101012
|
110 510
|
Step 3
|
101012
|
1516
|
Binary Number 101012 =
Hexadecimal Number 1516
4. Hexadecimal to
Binary
Steps
- Convert each hexadecimal digit to a 4 digit binary number (the hexadecimal digits may be treated as decimal for this conversion).
- Combine all the resulting binary groups (of 4 digits each) into a single binary number.
Example
Hexadecimal Number − 1516
Calculating Binary
Equivalent −
Step
|
Hexadecimal Number
|
Binary Number
|
Step 1
|
1516
|
110 510
|
Step 2
|
1516
|
00012 01012
|
Step 3
|
1516
|
000101012
|
Hexadecimal Number 1516 =
Binary Number 101012
No comments:
Post a Comment