Difficulty: Easy
Correct Answer: 50B7
Explanation:
Introduction / Context:
Hex arithmetic is common in low-level debugging and digital design. Subtracting two 16-bit hex values can be done by column subtraction with borrows or by converting to integers and back.
Given Data / Assumptions:
Concept / Approach:
Either convert to decimal and subtract, or perform hex column subtraction: (FC48) − (AB91) = 50B7.
Step-by-Step Solution:
Verification / Alternative check:
Integer check: 0xFC48 (64584) − 0xAB91 (43921) = 20663 = 0x50B7.
Why Other Options Are Wrong:
Common Pitfalls:
Dropping a borrow between nibbles or mixing decimal and hex digits.
Final Answer:
50B7
Discussion & Comments