Difficulty: Easy
Correct Answer: FD2
Explanation:
Introduction / Context:
When multiple rules could exist among the letters, the number itself sometimes provides the cleanest separator. Here we test primality/compositeness of the numeric component to find the outlier.
Given Data / Assumptions:
Concept / Approach:
Classify each number as prime or composite and select the only prime as the odd one out.
Step-by-Step Solution:
12 = 2 * 2 * 3 → composite.4 = 2 * 2 → composite.16 = 2^4 → composite.2 → prime (the only even prime).
Verification / Alternative check:
Quick divisor check confirms only 2 has exactly two divisors (1 and 2).
Why Other Options Are Wrong:
ZS12, PM4, RJ16: Their numeric parts are composite, so they form the majority group.
Common Pitfalls:
Misclassifying 1 (neither prime nor composite) or overlooking that 2 is the only even prime.
Final Answer:
FD2
Discussion & Comments