Difficulty: Easy
Correct Answer: The relative ease of converting to and from decimal.
Explanation:
Introduction / Context:
BCD (Binary Coded Decimal) encodes each decimal digit separately in 4 bits. While it is less storage-efficient than straight binary, it simplifies human-centric decimal tasks such as display, entry, and rounding in financial computations.
Given Data / Assumptions:
Concept / Approach:
BCD’s strength lies in easy decimal digit isolation and conversion. Each 4-bit group maps directly to one decimal digit (0–9), making formatting and decimal I/O trivial. Straight binary packs value efficiently but requires repeated division/modulus by 10 to extract digits.
Step-by-Step Explanation:
Verification / Alternative check:
Consider a decimal cash amount like 123.45. In BCD, each digit is independently represented, easing precise decimal rounding and avoiding some binary/decimal conversion pitfalls.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
The relative ease of converting to and from decimal.
Discussion & Comments