Aptitude
Hexaware placement papers 2025
Overview
Section titled “Overview”Hexaware placement papers 2025. Primary filter: Hexaware Online Assessment. Focus: Aptitude, basic coding, communication.
Hexaware 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 complete a work in 12 days, B in 15 days. They work together for 4 days, then A leaves. How long will B take to complete the remaining work?
Correct answer: 6 days
Quantitative
A sum of money doubles itself in 5 years at simple interest. In how many years will it become 4 times?
Correct answer: 15 years
Reasoning
Series: 1, 4, 9, 16, 25, ?
Perfect squares → 36.
Quantitative
The average of 5 numbers is 20. If one number is removed, the average becomes 18. Find the removed number.
Correct answer: 28
Reasoning
Statements: 1) Some boxes are cars, 2) Some cars are roads Conclusions: I) Some roads are boxes, II) Some cars are boxes, III) No box is a road, IV) Some roads are cars.
Correct answer: Only II and IV follow
Reasoning
A walks 3 km north, then 4 km east. Distance from start is:
3-4-5 right triangle → 5 km.
Quantitative
The ratio of present ages of father and son is 7:3. After 10 years, the ratio becomes 2:1. Find the present age of father.
Let present ages: Father = 7x, Son = 3x After 10 years: (7x + 10)/(3x + 10) = 2/1 7x + 10 = 2(3x + 10) 7x + 10 = 6x + 20 7x - 6x = 20 - 10 x = 10 Father's present age = 7 × 10 = 70 years
Verbal
Choose the correct form: "Neither the teacher nor the students _____ present."
Correct answer: were
Reasoning
Odd one out: Triangle, Square, Circle, Rectangle
Circle has no straight sides.
Verbal
One who loves books is a:
Bibliophile = lover of books.
Verbal
Find synonym of "Enormous"
Correct answer: Huge
Quantitative
The price of a product is increased by 25%. By what percentage should the consumption be reduced so that the expenditure remains the same?
Correct answer: 20%
Quantitative
What is 15% of 240?
15% of 240 = 0.15 × 240 = 36.
Verbal
Problem: "She is good _____ mathematics." a) at b) in c) on d) with
"Good at" is the correct prepositional phrase for skills.
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
Your score
0/15(0%)
Review
Sample Hexaware Questions with Solutions
Section titled “Sample Hexaware Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: 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.
Q2: Simple interest on Rs.8000 at 10% for 2 years?
Answer: Rs.1600
Explanation: SI = PRT/100 = 1600.
Q3: If 30% of x = 150, x = ?
Answer: 500
Explanation: 0.3x=150 => x=500.
Q4: Average of 5 numbers is 20. One number 30 replaced by 10. New average?
Answer: 16
Explanation: Sum 100 -> 80; avg 16.
Q5: A finishes in 10 days, B in 15. Together?
Answer: 6 days
Explanation: 1/10+1/15=1/6.
Q6: Probability of drawing an ace from a deck?
Answer: 1/13
Explanation: 4/52=1/13.
Q7: Pipe A fills in 6h, B in 8h. Together to fill?
Answer: 24/7 hours
Explanation: 1/6+1/8=7/24.
Q8: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Coding Practice
Section titled “Coding Practice”Coding Q1: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Top K frequent
Approach: Count + heap.
Complexity: O(n log k)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Linked list cycle
Approach: Floyd tortoise-hare.
Complexity: O(1) space
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Kadane max subarray
Approach: Running best.
Complexity: O(n)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
Hexaware tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Hexaware
Section titled “Deep Prep Notes for Hexaware”How the Hexaware Online Assessment Usually Feels
Section titled “How the Hexaware Online Assessment Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Hexaware, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include Java, Python, C++.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Hexaware |
|---|---|
| Aptitude | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| IT Services, Digital Transformation 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

