Difficulty: Easy
Correct Answer: 111100111010
Explanation:
Introduction / Context:
Mapping hexadecimal to binary is direct because a hex digit represents exactly four binary bits. This ability is essential for interpreting bit fields, control registers, and instruction encodings without intermediate decimal steps.
Given Data / Assumptions:
Concept / Approach:
Translate each hex digit independently to a 4-bit binary group and concatenate in order. This preserves magnitude and avoids arithmetic errors that sometimes occur when converting via decimal.
Step-by-Step Solution:
1) Expand digits: F→1111, 3→0011, A→1010.2) Concatenate groups in the same order: 1111 0011 1010.3) Remove spaces for the final binary: 111100111010.4) Therefore, F3A16 corresponds to 111100111010 base 2.
Verification / Alternative check:
Convert back by grouping the binary in fours: 1111→F, 0011→3, 1010→A. This reconstructs F3A16 exactly.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing nibble order, dropping a nibble, or confusing A with 1011, which is actually B.
Final Answer:
111100111010
Discussion & Comments