Difficulty: Easy
Correct Answer: 1000
Explanation:
Introduction:
Here we divide two unsigned 8-bit numbers and report the integer quotient. Understanding binary division and being able to cross-check quickly in decimal helps ensure correctness and avoid bit-level mistakes.
Given Data / Assumptions:
Concept / Approach:
Translate to decimal to validate the magnitude, then map back to binary. Alternatively, perform long division in base-2. Since 88 ÷ 11 = 8 exactly, we expect a clean binary power of two for the quotient.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments