Difficulty: Easy
Correct Answer: 150
Explanation:
Introduction / Context:A number divisible by 6 must be divisible by both 2 and 3, i.e., it must be a multiple of 6. Counting the multiples of a fixed integer in a closed interval can be done using floor division endpoints.Given Data / Assumptions:
Concept / Approach:The count of multiples of k in [A, B] is floor(B/k) − floor((A−1)/k). Apply with A = 100, B = 999, k = 6.Step-by-Step Solution:
floor(999/6) = 166.floor(99/6) = 16.Count = 166 − 16 = 150.Verification / Alternative check:First multiple ≥ 100 is 102 (6 * 17); last multiple ≤ 999 is 996 (6 * 166). Number of terms in the AP 102, 108, …, 996 is (166 − 17 + 1) = 150.
Why Other Options Are Wrong:
Common Pitfalls:Using B/k − A/k without floors or forgetting to subtract the multiples below A.
Final Answer:
150
Discussion & Comments