Decimal → binary conversion
Learn the method, study an example, practice with gradually reduced support and check whether you have mastered the skill.
1. How it works
To convert a decimal number to binary, repeatedly divide it by 2 and record each remainder. When the quotient reaches 0, read the remainders from bottom to top.
2. Step-by-step example: 13
Reading the remainders from bottom to top: 1101
Therefore 1310 = 11012.
3. Guided practice
Progress: 0 / 5 exercises — correct: 0
Convert 7 to binary.
4. Learning objective
The goal is not to guess a conversion, but to apply the method independently and explain why the remainders are read from bottom to top.