Order the Conversion Steps
Sequence the steps for binary to hex conversion.
Drag the steps into the correct chronological order to convert the binary number 11011 into Hexadecimal.
Learn the shortcut method of grouping bits (3 for octal, 4 for hex) to bypass base-10 entirely.
Preview · progress not saved — Chapter 1 is free
Sequence the steps for binary to hex conversion.
Drag the steps into the correct chronological order to convert the binary number 11011 into Hexadecimal.
Explain why 3 bits = 1 octal and 4 bits = 1 hex digit.

The Math Behind the Magic:
Since 2³ = 8, every 3 bits exactly represent 1 Octal digit. Since 2⁴ = 16, every 4 bits exactly represent 1 Hexadecimal digit.
Explain how to group bits and pad with zeros.
When converting Binary to Octal or Hexadecimal, you don't need complicated math. Just group the bits!
For Octal (base-8), make groups of 3 bits. For Hexadecimal (base-16), make groups of 4 bits.
Visual comparison of grouping the same binary string into 3s vs 4s.

Group by 3 for Octal, or group by 4 for Hexadecimal.
Explain expanding digits into bit groups.
Converting back to binary is even easier. Instead of grouping, you just substitute!
Replace each Octal digit with its 3-bit binary equivalent, or each Hexadecimal digit with its 4-bit binary equivalent.