Multiple choice

What is the binary equivalent of the hexadecimal number B3?

  1. 10111

  2. 11211

  3. 10110011

  4. 13101

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

Converting hex to binary: each hex digit becomes 4 binary digits. B=11 decimal=1011 binary, 3=3 decimal=0011 binary. Combining: 10110011. Options B and D are invalid binary (contain digits >1).