Aptitude
Bain placement papers 2024
Overview
Section titled “Overview”Bain placement papers 2024. Primary filter: Bain Online Test / SOVA variants. Focus: Case interviews, experience interview.
Bain Aptitude Mock Quiz
Timed placement-style MCQs with score and explanations after you submit. Use it to check speed and accuracy before the real test.
Quantitative
A can do a piece of work in 10 days and B in 15 days. Days to finish together:
1/10 + 1/15 = 1/6 → 6 days.
Verbal
Fill in: The news _____ shocking.
News is singular → is.
Quantitative
A and B can complete a work in 12 days, B and C in 15 days, C and A in 20 days. In how many days will A alone complete the work?
Let total work = LCM of 12, 15, 20 = 60 units A + B efficiency = 60/12 = 5 units/day B + C efficiency = 60/15 = 4 units/day C + A efficiency = 60/20 = 3 units/day Adding all: 2(A + B + C) = 5 + 4 + 3 = 12 units/day A + B + C = 6 units/day A's efficiency = (A +
Quantitative
Divide ₹720 in the ratio 2:3. The larger share is:
Larger = 3/5 × 720 = ₹432.
Reasoning
If every letter is shifted +2 in the alphabet, CODE becomes:
Each letter +2 → EQFG.
Quantitative
Find compound interest on ₹10,000 for 2 years at 10% per annum, compounded annually.
Amount = P(1 + R/100)^n Amount = 10000(1 + 10/100)^2 = 10000 × 1.1^2 = 10000 × 1.21 = ₹12,100 CI = Amount - Principal = 12100 - 10000 = ₹2,100
Verbal
Find antonym of "Temporary"
Correct answer: Permanent
Reasoning
Which comes next: 5, 10, 20, 40, ?
Each term doubles → 80.
Quantitative
A sum doubles in 5 years at simple interest. The rate of interest is:
For doubling, RT = 100 → R = 100/5 = 20%.
Verbal
Problem: Find the synonym of "ABUNDANT": a) Scarce b) Plentiful c) Limited d) Rare
Abundant means existing in large quantities, so "Plentiful" is the synonym.
Verbal
A shopkeeper sells an article at a profit of 20%. If he had bought it at 20% less and sold it for ₹5 less, he would have gained 25%. Find the cost price of the article.
Let CP = 100 SP = 120 (20% profit) New CP = 80 (20% less) New SP = 120 - 5 = 115 New Profit = 115 - 80 = 35 New Profit % = (35/80) × 100 = 43.75% But given new profit is 25%, so: Let actual CP = x Actual SP = 1.2x New CP = 0.8x New SP = 1.2x - 5 New Profit = (
Reasoning
Find the next number: 8, 6, 9, 7, 10, ?
−2,+3 alternating → 10-2=8 → 8.
Quantitative
Identify the error: "Neither of the students were present in the class."
Correct answer: "were" should be "was"
Reasoning
In each question a set of six statements is given. Identify the answer choice in which the statements are logically related. A: All green is blue B: All green is white C: All green is black D: All black is white E: All blue is yellow F: All blue is white
Correct answer: ABF
Reasoning
A walks 8 km north, then 15 km east. Distance from start is:
Right triangle → 17 km.
Your score
0/15(0%)
Review
Sample Bain Questions with Solutions
Section titled “Sample Bain Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Q2: Find next: 2, 6, 12, 20, 30, ?
Answer: 42
Explanation: n(n+1) pattern.
Q3: A train 120 m long runs at 54 km/h. Time to pass a pole?
Answer: 8 seconds
Explanation: 54 km/h = 15 m/s; t = 120/15 = 8 s.
Q4: Ratio of ages A:B = 4:5. After 6 years = 6:7. A present age?
Answer: 12 years
Explanation: 4x+6 / 5x+6 = 6/7 => x=3 => A=12.
Q5: Simple interest on Rs.8000 at 10% for 2 years?
Answer: Rs.1600
Explanation: SI = PRT/100 = 1600.
Q6: If 30% of x = 150, x = ?
Answer: 500
Explanation: 0.3x=150 => x=500.
Q7: Average of 5 numbers is 20. One number 30 replaced by 10. New average?
Answer: 16
Explanation: Sum 100 -> 80; avg 16.
Q8: A finishes in 10 days, B in 15. Together?
Answer: 6 days
Explanation: 1/10+1/15=1/6.
Coding Practice
Section titled “Coding Practice”Coding Q1: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Kadane max subarray
Approach: Running best.
Complexity: O(n)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
Bain tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Bain tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Bain
Section titled “Deep Prep Notes for Bain”How the Bain Online Test / SOVA variants Usually Feels
Section titled “How the Bain Online Test / SOVA variants Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Bain, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include N/A for AC; tech affiliates differ.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Bain |
|---|---|
| Case interviews | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Management Consulting awareness | Managerial / HR differentiation |
| Communication | Especially for consulting and client-facing GSIs |
14-Day Sprint
Section titled “14-Day Sprint”- Days 1-3: pattern familiarization + 2 sectional mocks
- Days 4-7: weak-topic closed practice
- Days 8-10: full mocks every other day
- Days 11-14: interview narration + light revision
Related
Section titled “Related”Coding
OA
Hub

