You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson brings together all three number systems — binary, denary, and hexadecimal — and provides a comprehensive guide to converting between them. Fluency in these conversions is essential for the GCSE Computer Science exam.
| From | To | Method |
|---|---|---|
| Binary → Denary | Add up the place values of all 1-bits | Use the column headings: 128, 64, 32, 16, 8, 4, 2, 1 |
| Denary → Binary | Subtract place values or divide by 2 | Use place value method or successive division |
| Binary → Hex | Split into nibbles (4-bit groups) | Convert each nibble to its hex digit |
| Hex → Binary | Replace each hex digit with 4 bits | Use the hex-to-binary lookup table |
| Hex → Denary | Multiply digits by powers of 16 | First digit × 16 + second digit × 1 |
| Denary → Hex | Divide by 16 | Quotient = first digit, remainder = second digit |
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.