Difficulty: Easy
Correct Answer: 63
Explanation:
Introduction / Context:Most numbers in this set are primes; the single composite is the odd one out.
Given Data / Assumptions:
Concept / Approach:Use digit-sum rule for 3 and quick small-prime checks.
Step-by-Step Solution:
63 → 6 + 3 = 9 → divisible by 3 → composite.43 → not divisible by 2, 3, 5 → prime.53 → not divisible by 2, 3, 5 → prime.73 → not divisible by 2, 3, 5 → prime.Verification / Alternative check:Direct division by 7: 63 = 7 * 9 confirms compositeness.
Why Other Options Are Wrong:They lack non-trivial divisors and are prime.
Common Pitfalls:Assuming “ends with 3” implies divisibility by 3; the rule concerns digit sums, not the last digit.
Final Answer:63 is composite and thus the odd number.
Discussion & Comments