Multiple choice technology programming languages

To which numbering system can the binary number 1101100100111100 be easily converted to?

  1. Octal

  2. Binary itself

  3. Hexa decimal

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Binary numbers group in sets of 4 bits (0000 to 1111), which map perfectly to one hexadecimal digit (0-F). The given binary 1101100100111100 has 16 bits, grouping as 1101 1001 0011 1100, which converts to D93C in hex. Converting to octal requires grouping in 3s, which doesn't align as cleanly.