Difficulty: Medium
Correct Answer: 48 digit
Explanation:
Introduction / Context:
We apply digit counting via base-10 logarithms. For N > 0, digits = floor(log10 N) + 1. Use factorization to compute log10 875 accurately.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Verification / Alternative check:
(1000)^16 has 49 digits; since 875 < 1000, (875)^16 has fewer ⇒ 48 digits fits the estimate.
Why Other Options Are Wrong:
Final Answer:
48 digit
Discussion & Comments