- For fractional part conversion, Decimal → Binary uses repeated multiplication by 2.
- हर चरण में integer part लें और fractional part पर प्रक्रिया दोहराएँ।
Source example: 0.625 × 2 → take integer part 1 → 0.25 × 2 = 0.5 (take 0) → 0.5 × 2 = 1.0 (take 1) → 0.1012
PDF TYPESETTING NOTE
The PDF prints the first multiplication result without a decimal point (“125”). The conversion sequence itself is shown as source content; this note flags the typesetting issue.
(0.101)2 = 1×2−1 + 0×2−2 + 1×2−3 = 0.5 + 0 + 0.125 = 0.625