Difficulty: Easy
Correct Answer: 65
Explanation:
Introduction / Context:
Square recognition is foundational in numerical classification. A single non-square among well-known squares is the intended outlier.
Given Data / Assumptions:
Concept / Approach:
Check each value against nearby integer squares or factorization to confirm square status.
Step-by-Step Solution:
Verify 49, 36, 100 as squares.Recognize 65 is not an exact square.
Verification / Alternative check:
Prime factorization: 65 = 5 * 13 contains no repeated prime factors, hence not a square.
Why Other Options Are Wrong:
49/36/100: Each is a perfect square and forms the majority class.
Common Pitfalls:
Confusing 64 (square) with 65 due to adjacency.
Final Answer:
65
Discussion & Comments