Difficulty: Medium
Correct Answer: 6
Explanation:
Given data
Concept / Approach
Check each number
2133: sum = 9 ⇒ divisible by 9 ⇒ exclude.2343: sum = 12 ⇒ /3 yes, /9 no ⇒ include.3474: sum = 18 ⇒ /9 yes ⇒ exclude.4131: sum = 9 ⇒ /9 yes ⇒ exclude.5286: sum = 21 ⇒ /3 yes, /9 no ⇒ include.5340: sum = 12 ⇒ /3 yes, /9 no ⇒ include.6336: sum = 18 ⇒ /9 yes ⇒ exclude.7347: sum = 21 ⇒ /3 yes, /9 no ⇒ include.8115: sum = 15 ⇒ /3 yes, /9 no ⇒ include.9276: sum = 24 ⇒ /3 yes, /9 no ⇒ include.
Total
Included: {2343, 5286, 5340, 7347, 8115, 9276} ⇒ count = 6.
Common pitfalls
Final Answer
6
Discussion & Comments