Aptitude
Nagarro placement papers 2025
Overview
Section titled “Overview”Nagarro placement papers 2025. Primary filter: Nagarro Coding Assessment. Focus: DSA, coding, problem-solving.
Nagarro 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
If all roses are flowers, and some flowers are red, which must be true?
From "all roses are flowers" and "some flowers are red", we cannot conclude about roses being red. But "some red things are flowers" must be true.
Quantitative
A is twice as efficient as B. Together they complete a work in 12 days. In how many days will A alone complete it?
Let B's efficiency = 1 unit/day A's efficiency = 2 units/day Together: 1 + 2 = 3 units/day Total work = 3 × 12 = 36 units A alone: 36 / 2 = 18 days
Reasoning
What is the value of x? Statement I: x² - 6x + 8 = 0. Statement II: x
Statement I: x² - 6x + 8 = 0 (x - 2)(x - 4) = 0 x = 2 or x = 4 Statement II: x < 5 (both 2 and 4 satisfy this) Combining both: x = 2 or x = 4 (both < 5)
Reasoning
Statements: 1. Some cats are dogs, 2. All dogs are animals, 3. No animal is a bird
From statements 1 and 2: Some cats are animals (I follows) From statements 2 and 3: No dog is a bird (II follows) From I: Some animals are cats (III follows)
Quantitative
A man can do a piece of work in 10 days, and another man can do it in 15 days. How long will they take to complete the work together?
First man's 1 day work = 1/10 Second man's 1 day work = 1/15 Combined 1 day work = 1/10 + 1/15 = (3+2)/30 = 5/30 = 1/6 Time taken together = 6 days
Reasoning
A is taller than B but shorter than C. D is shorter than B. Who is tallest?
C > A > B > D → C is tallest.
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.
Reasoning
Find the missing number: 2, 6, 12, 20, 30, ?
Pattern: Differences are 4, 6, 8, 10 (increasing by 2) Next difference = 12 Next number = 30 + 12 = 42
Reasoning
Find the next number: 2, 6, 12, 20, 30, ?
Differences +4, +6, +8, +10, +12 → next is 42.
Verbal
"The committee have decided": correct form is:
Collective noun "committee" as one unit takes singular "has".
Verbal
Find the synonym of "Benevolent".
Correct answer: Kind
Verbal
Synonym of "Abundant":
Abundant means plentiful.
Quantitative
Price rises by 25%. By what % should consumption fall to keep expenditure the same?
Reduction = 25/(100+25)×100 = 20%.
Verbal
Identify the error type: "He don't know the answer."
He doesn't / does not - subject-verb agreement.
Quantitative
The average of 5 numbers is 42. If one number 32 is removed, the new average is:
Sum = 210. New sum = 178. Average = 178/4 = 44.5.
Your score
0/15(0%)
Review
Sample Nagarro Questions with Solutions
Section titled “Sample Nagarro 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
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Nagarro 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)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Nagarro tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Nagarro
Section titled “Deep Prep Notes for Nagarro”How the Nagarro Coding Assessment Usually Feels
Section titled “How the Nagarro Coding Assessment Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Nagarro, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, C++, Python.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Nagarro |
|---|---|
| DSA | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Digital Engineering 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”EPAM · Thoughtworks · Persistent · Globant · Publicis Sapient · Google

