Difficulty: Easy
Correct Answer: 10
Explanation:
Introduction / Context:
Digit count problems rely on logarithms. If N > 0, then the number of decimal digits is floor(log10 N) + 1. We are given log10 2, which lets us evaluate powers of 2 efficiently.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Verification / Alternative check:
Since 10^9 = 1,000,000,000 and 10^10 = 10,000,000,000, and 8^10 ≈ 1.07 × 10^9, it lies between 10^9 and 10^10, confirming 10 digits.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
10
Discussion & Comments