Difficulty: Easy
Correct Answer: 120
Explanation:
Introduction / Context:
Classic set problems about course enrollment are solved with inclusion–exclusion. Given totals for English and Hindi and the universe size, we can compute the overlap directly.
Given Data / Assumptions:
Concept / Approach:
Inclusion–exclusion for two sets: n(E ∪ H) = n(E) + n(H) − n(E ∩ H). Here n(E ∪ H) = U, so solve for n(E ∩ H).
Step-by-Step Solution:
n(E ∩ H) = n(E) + n(H) − U= 450 + 270 − 600= 120
Verification / Alternative check:
Unique-English = 450 − 120 = 330; Unique-Hindi = 270 − 120 = 150; 330 + 150 + 120 = 600 (balanced).
Why Other Options Are Wrong:
48, 60, 80 do not satisfy the totals when back-checked; 140 would overcount overlap and push the union below 600.
Common Pitfalls:
Adding 75% and 45% to 120% and forgetting to subtract the overlap once; assuming disjoint groups when the problem states “or both.”
Final Answer:
120
Discussion & Comments