Difficulty: Easy
Correct Answer: 13
Explanation:
Introduction / Context:This is a chain-logic ages problem. We are given one fixed age (Ramu) and a sequence of older/younger relationships connecting Robin, Rohit, and finally Krishna. Carefully traversing these links and keeping operations in the correct order yields Krishna’s age without any guesswork.
Given Data / Assumptions:
Concept / Approach:Translate each statement into a simple addition/subtraction. Start from Ramu’s known age, compute Robin, then Rohit, then finally Krishna. No ratios or averages are involved, so linear offsets are enough.
Step-by-Step Solution:
Robin = 48 − 6 = 42.Rohit = 42 − 14 = 28.Krishna = 28 − 15 = 13.Verification / Alternative check:Check back up the chain: Krishna 13 ⇒ Rohit 28 is indeed 15 older; Robin 42 is 14 older than Rohit; Ramu 48 is 6 older than Robin. All relations hold.
Why Other Options Are Wrong:12/14/15/16 fail at least one of the linked differences when cross-checked from Ramu down to Krishna.
Common Pitfalls:Reversing “older/younger” operations; mixing up who is older than whom; skipping a link in the chain and doing a one-step jump that ignores an intermediate relationship.
Final Answer:13
Discussion & Comments