Computer Science
Convert the following to their binary equivalent:
(322.2)10
Number System
6 Likes
Answer
Converting integral part
| 2 | Quotient | Remainder | 
|---|---|---|
| 2 | 322 | 0 | 
| 2 | 161 | 1 | 
| 2 | 80 | 0 | 
| 2 | 40 | 0 | 
| 2 | 20 | 0 | 
| 2 | 10 | 0 | 
| 2 | 5 | 1 | 
| 2 | 2 | 0 | 
| 2 | 1 | 1 | 
| 0 | 
Converting fractional part
| Multiply | = | Resultant | Carry | 
|---|---|---|---|
| 0.2 x 2 | = | 0.4 | 0 | 
| 0.4 x 2 | = | 0.8 | 0 | 
| 0.8 x 2 | = | 0.6 | 1 | 
| 0.6 x 2 | = | 0.2 | 1 | 
Therefore, (322.2)10 = (101000010.0011)2
Answered By
4 Likes