Aptitude
Tiger Analytics placement papers 2024
Overview
Section titled “Overview”Tiger Analytics placement papers 2024. Primary filter: Tiger Analytics Assessment. Focus: SQL, Python, case, aptitude.
Tiger Analytics 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 man can row 7 km/h in still water. If the river is flowing at 3 km/h, how long will it take him to row 12 km downstream?
Speed in still water = 7 km/h Speed of stream = 3 km/h Downstream speed = 7 + 3 = 10 km/h Time = Distance/Speed = 12/10 = 1.2 hours = 1 hour 12 minutes
Verbal
Choose the correctly used word: "The manager _____ the importance of teamwork."
"Emphasize" is a transitive verb and doesn't require a preposition.
Quantitative
If "PENCIL" is coded as "RGPENK", how is "PAPER" coded?
Correct answer: RCRGT
Quantitative
A sum of ₹8,000 amounts to ₹9,600 in 4 years at simple interest. Find the rate of interest per annum.
Principal = ₹8,000, Amount = ₹9,600 Interest = 9,600 - 8,000 = ₹1,600 SI = P × R × T / 100 1,600 = 8,000 × R × 4 / 100 R = (1,600 × 100) / (8,000 × 4) = 5%
Quantitative
A game: Win $100 with 30% probability, lose $50 with 70% probability. Expected value?
Correct answer: 0.3 × 100 + 0.7 × (-50) = 30 - 35 = -$5
Reasoning
If letter positions are summed (A=1…Z=26), TEAM equals:
Sum of positions = 39.
Verbal
Fill in: The news _____ shocking.
News is singular → is.
Reasoning
Find the next number: 3, 9, 27, 81, ?
×3 each → 243.
Reasoning
If RED is 27 and BLUE is 40 (sum of positions), GREEN is:
G+R+E+E+N = 7+18+5+5+14 = 49.
Quantitative
Price rises 25%. By what % should consumption fall to keep expenditure same?
Reduction = r/(100+r)×100 = 25/125×100 = 20%.
Verbal
Problem: Find the antonym of "BRILLIANT": a) Bright b) Dull c) Shining d) Smart
Brilliant means very bright or intelligent, so "Dull" is the antonym.
Verbal
The company's profits have been _____ steadily over the past year.
Correct answer: declining
Reasoning
Complete the series: AZ, BY, CX, ?
First letter +1, second −1 → DW.
Reasoning
Two trains of lengths 100m and 150m are running in the same direction at speeds of 50 km/hr and 40 km/hr respectively. Find the time taken by faster train to overtake the slower train.
Relative speed = 50 - 40 = 10 km/hr = 10 × 5/18 = 25/9 m/s Distance to cover = 100 + 150 = 250m Time = 250 / (25/9) = 250 × 9/25 = 90 seconds
Quantitative
A shopkeeper sells an item at 20% profit. If he had bought it at 10% less and sold it for ₹40 less, he would have gained 25%. Find the cost price.
Correct answer: ₹800
Your score
0/15(0%)
Review
Sample Tiger Analytics Questions with Solutions
Section titled “Sample Tiger Analytics Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: Probability of drawing an ace from a deck?
Answer: 1/13
Explanation: 4/52=1/13.
Q2: Pipe A fills in 6h, B in 8h. Together to fill?
Answer: 24/7 hours
Explanation: 1/6+1/8=7/24.
Q3: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Q4: Find next: 2, 6, 12, 20, 30, ?
Answer: 42
Explanation: n(n+1) pattern.
Q5: 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.
Q6: 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.
Q7: Simple interest on Rs.8000 at 10% for 2 years?
Answer: Rs.1600
Explanation: SI = PRT/100 = 1600.
Q8: If 30% of x = 150, x = ?
Answer: 500
Explanation: 0.3x=150 => x=500.
Coding Practice
Section titled “Coding Practice”Coding Q1: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Tiger Analytics tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Tiger Analytics
Section titled “Deep Prep Notes for Tiger Analytics”How the Tiger Analytics Assessment Usually Feels
Section titled “How the Tiger Analytics Assessment Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Tiger Analytics, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Python, SQL.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Tiger Analytics |
|---|---|
| SQL | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Analytics & AI 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
Similar Companies
Section titled “Similar Companies”Fractal Analytics · Mu Sigma · ZS Associates · EXL · Google · Amazon

