Difficulty: Medium
Correct Answer: 9
Explanation:
Introduction / Context:This question combines whole-class rank with rank within a subset (the pass list). We convert “kth from front” and “mth from end” into totals using the standard identity: total = front + end − 1. Then we subtract to find failures.
Given Data / Assumptions:
Concept / Approach:For any line of N people, if a person is a from the front and b from the back, then N = a + b − 1. Apply this to the full class to get class size T, and to the pass list to get P. Then failures F = T − P.
Step-by-Step Solution:
Compute total class T: T = 13 + 17 − 1 = 29.Compute passed count P: P = 8 + 13 − 1 = 20.Compute failed F = T − P = 29 − 20 = 9.Verification / Alternative check:Visualize the full class of 29 with pass marks on 20 positions; Malay is in both counts consistently. The arithmetic identity ensures correctness.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting to subtract 1 in the identity; mixing class and pass ranks; or assuming overlapping ambiguity. The identity T = front + end − 1 resolves the totals directly.
Final Answer:9
Discussion & Comments