Difficulty: Easy
Correct Answer: 121
Explanation:
Introduction / Context:
Odd-one-out problems may combine two properties: a shared base property and an additional unique property for one element. Here, all values are multiples of 11; one stands apart by being a perfect square as well.
Given Data / Assumptions:
Concept / Approach:
Recognize 121 = 11 * 11 = 11^2, a perfect square. The others are 11 * 2 = 22, 11 * 22 = 242, 11 * 33 = 363, none of which are squares.
Step-by-Step Solution:
Factor 22 → 11 * 2 → not a square.Factor 121 → 11 * 11 → perfect square.Factor 242 → 11 * 22 → not a square.Factor 363 → 11 * 33 → not a square.
Verification / Alternative check:
Square test: nearest squares 10^2=100, 11^2=121, 12^2=144. Only 121 hits a perfect square exactly.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “multiple of 11” with “power of 11.” Only equal factor pairs (k * k) produce perfect squares. 121 alone satisfies this.
Final Answer:
121
Discussion & Comments