Aptitude
Delhivery placement papers 2025
Overview
Section titled “Overview”Delhivery placement papers 2025. Primary filter: Delhivery OA. Focus: DSA, optimization, systems.
Delhivery 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
Price rises by 25%. By what % should consumption fall to keep expenditure the same?
Reduction = 25/(100+25)×100 = 20%.
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.
Reasoning
Find next number: 3, 6, 12, 24, 48, ?
Pattern: Each number = previous × 2 3×2=6, 6×2=12, 12×2=24, 24×2=48 Next: 48×2 = 96
Quantitative
If the sum of the first n natural numbers is 210, what is the value of n?
Sum = n(n + 1)/2 = 210 n(n + 1) = 420 n² + n - 420 = 0 (n + 21)(n - 20) = 0 n = 20 (positive value)
Verbal
Choose the correct form: "If I _____ rich, I would travel the world."
Second conditional uses "were" for all subjects (subjunctive mood).
Verbal
Synonym of "Ancient":
Ancient means old.
Reasoning
A walks 10m North, turns right walks 5m, turns right walks 10m. Direction from start?
Correct answer: East (5m east of starting point)
Reasoning
Problem: What is the value of x? Statement 1: x² = 16 Statement 2: x > 0
From statement 1: x = 4 or -4 From statement 2: x > 0 Combining both: x = 4
Quantitative
Pipe A fills a tank in 6 hours, pipe B empties it in 8 hours. Time to fill both open:
1/6 − 1/8 = 1/24 → 24 hours.
Verbal
Each of the boys _____ given a prize.
"Each" takes singular verb → was.
Reasoning
In a row of 30 students, A is 10th from the left. Rank from the right is:
From right = 30-10+1 = 21.
Quantitative
A sum doubles in 5 years at simple interest. The rate of interest is:
For doubling, RT = 100 → R = 100/5 = 20%.
Verbal
He _____ to school every day.
Singular present.
Reasoning
If A is brother of B, B is sister of C, C is brother of D, how is D related to A?
A, B, C, D share the same generation → siblings (gender of D unknown but sibling).
Quantitative
A student scored 60, 70, and 80 in three subjects. If the weights are 2, 3, and 5 respectively, find the weighted average.
Correct answer: 73
Your score
0/15(0%)
Review
Sample Delhivery Questions with Solutions
Section titled “Sample Delhivery Questions with Solutions”Practice-style questions (not leaked live papers).
Coding Practice
Section titled “Coding Practice”Coding Q1: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Delhivery tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Delhivery
Section titled “Deep Prep Notes for Delhivery”How the Delhivery OA Usually Feels
Section titled “How the Delhivery OA Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Delhivery, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, Python, Go.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Delhivery |
|---|---|
| DSA | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Logistics Tech 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

