Difficulty: Easy
Correct Answer: Correct
Explanation:
Introduction / Context:
Converting between number bases is a common digital design and computer science task. For decimal integers, a standard manual technique is repeated division by the target base, recording remainders that become the digits in reverse order. This prompt asks whether that method applies to decimal→binary conversion.
Given Data / Assumptions:
Concept / Approach:
In positional notation, the remainder sequence from successive division by the base yields the digits because each division peels off the least significant digit in that base. For base 2, remainders are bits. Reading them in reverse produces the correct binary representation.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments