Correct option is A
The hexadecimal number
1B0 is converted to binary as
000110110000.
Conversion Process:
1.
Hexadecimal to Binary Mapping: Each hexadecimal digit corresponds to 4 binary bits:
·
1 → 0001
·
B → 1011
·
0 → 0000
2.
Combine the Binary Groups: Combine the binary equivalents of each hexadecimal digit to form the final binary number:
·
1B0 (Hex) → 0001 1011 0000 (Binary)
3.
Result: The binary equivalent of
1B0 is
000110110000.
Important Key Points:
1.
Hexadecimal to Binary Conversion Rule: Each hexadecimal digit represents 4 binary bits.
2.
Padding Zeros: For uniformity, pad leading zeros if the binary representation does not have 4 bits per hexadecimal digit.
3.
Quick Reference: 1 → 0001, B → 1011, 0 → 0000.
