CSAT Solved Papers/ 2025/Q48
2025 CSAT — Q48
What is the digit in the number ?
Worked rationale
The string concatenates . Count digits block by block (by number length):
- -digit numbers –: numbers digits (positions –).
- -digit numbers –: digits (positions –).
After we have used digits. The target is position , so we are digits into the -digit block (starting at ).
The three-digit number is , and "" occupies positions . The digit is its last digit, .
Answer: (d) 9.
Why the other options miss
- A counted one too many: lands on the digit right after (the "" of at position ), overshooting by one position.
- B an arithmetic slip: mis-subtracts the cumulative count (e.g. uses instead of before the -digit block), shifting into the wrong number’s digit.
- C counted one too many: places as the number being (an off-by-one in indexing), reading a wrong digit.
Specialist insight
These “-th digit of ” items are pure block accounting: tally digits and subtract until the remaining count lands inside a block. The two fence-post hazards are (i) the running total before the -digit block is , not , and (ii) the -th -digit number is , not . Here divides evenly by , so the position is the last digit of the three-digit number — a clean boundary that the off-by-one distractors (a)/(c) are built to catch. Carry the cumulative counts explicitly and index from the right block.
After digits (–), more three-digit numbers exactly, ending on the last digit of ; one step off gives the "" of .