Difficulty: Medium
Correct Answer: 110101 100001100
Explanation:
Introduction / Context:
BCD (Binary-Coded Decimal) encodes each decimal digit separately using 4 bits (8–4–2–1 weights). To convert full multi-digit BCD numbers into pure binary, first decode each BCD digit to its decimal value, then convert the complete decimal number to binary. The “weighting factors” method emphasizes interpreting each nibble correctly before performing the base-10 to base-2 conversion.
Given Data / Assumptions:
Concept / Approach:
Step 1: Translate each 4-bit BCD nibble to its decimal digit. Step 2: Combine the digits into a decimal number. Step 3: Convert that decimal to binary using division-by-2 or place-value decomposition. We present each converted number separated by a space, matching the format of the options.
Step-by-Step Solution:
Verification / Alternative check:
Use repeated division by 2: 53 → 110101, 268 → 100001100. Cross-check with place-value sums to confirm correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing BCD with pure binary and concatenating nibbles directly; always convert the decimal value represented by the BCD digits into base-2.
Final Answer:
110101 100001100
Discussion & Comments