Difficulty: Easy
Correct Answer: 2B, 01000011
Explanation:
Introduction / Context:
Base conversion is a routine but crucial skill in digital systems. Hexadecimal offers compact binary representation, while BCD encodes each decimal digit into a 4-bit nibble, commonly used for displays and decimal arithmetic interfaces.
Given Data / Assumptions:
Concept / Approach:
For hex: repeatedly divide by 16 or decompose into high and low nibbles. For BCD: encode each decimal digit individually (4 → 0100, 3 → 0011).
Step-by-Step Solution:
Verification / Alternative check:
Binary of 43 is 0010 1011; grouping nibbles gives 0x2B. BCD is per digit; concatenation yields 0100 0011 as expected.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments