Mahindra 2024 paper 1
Complete Mahindra placement paper with aptitude questions and solutions
This page collects Mahindra placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Mahindra patterns and the latest shifts.
Mahindra 2024 paper 1
Complete Mahindra placement paper with aptitude questions and solutions
Mahindra 2024 paper 2
Additional 2024 Mahindra paper with detailed solutions
Mahindra 2024 paper 3
Another 2024 Mahindra paper with comprehensive solutions
| Section | Questions | Time | Difficulty | Focus Areas |
|---|---|---|---|---|
| Aptitude | 20-25 | 30-40 min | Medium | Quantitative, logical reasoning |
| Technical | 15-20 | 25-30 min | Medium | Domain knowledge, basics |
| Verbal Ability | 10-15 | 15-20 min | Easy-Medium | Comprehension, grammar |
Total: 50-60 questions, 60-90 minutes
Key Changes in 2024:
This section contains practice questions styled on Mahindra placement papers 2024 (previous-year pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.
Solution:
Together rate = 1/10. B’s rate = 1/15.
A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.
Answer: 30 days
Solution:
Let CP = 100. MP = 140. SP after 10% discount = 126.
Profit % = 126 − 100 = 26%.
Answer: 26%
Solution:
Let original = 100. After +25% → 125. After −25% → 125 − 31.25 = 93.75.
Net change = 100 − 93.75 = 6.25. Net % = 6.25% decrease (always a loss of (25/10)² %).
Answer: 6.25% decrease
Solution:
Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.
Answer: 22
Solution:
Pattern: letter positions: B=2,A=1,T=20
Therefore BAT → 2120.
Answer: 2120
Solution:
Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).
In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.
Answer: Brother
Solution:
1NF: atomic values. 2NF: no partial dependency. 3NF: no transitive dependency.
Answer: 3NF
Solution:
OS uses demand paging (and sometimes segmentation) to implement virtual memory.
Answer: Demand paging
Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.
Example:
Input: nums = [2, 7, 11, 15], target = 9Output: [0, 1]Solution (Java):
public int[] twoSum(int[] nums, int target) { Map<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < nums.length; i++) { int need = target - nums[i]; if (map.containsKey(need)) return new int[]{map.get(need), i}; map.put(nums[i], i); } return new int[]{};}Time Complexity: O(n)
Space Complexity: O(n)
Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?
Example:
Input: n = 4Output: 5Solution (Java):
public int climbStairs(int n) { if (n <= 2) return n; int a = 1, b = 2; for (int i = 3; i <= n; i++) { int c = a + b; a = b; b = c; } return b;}Time Complexity: O(n)
Space Complexity: O(1)
Problem Statement: Rotate the array to the right by k steps.
Example:
Input: [1,2,3,4,5,6,7], k = 3Output: [5,6,7,1,2,3,4]Solution (Java):
public void rotate(int[] nums, int k) { k %= nums.length; reverse(nums, 0, nums.length - 1); reverse(nums, 0, k - 1); reverse(nums, k, nums.length - 1);}void reverse(int[] a, int l, int r) { while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }}Time Complexity: O(n)
Space Complexity: O(1)
Hiring volume
2024 Data: Mahindra hired 200-500 candidates from top engineering colleges in 2024. The company conducted placement drives at 30+ colleges across India.
Salary packages
2024 Packages: ₹8-14 LPA for freshers
Process changes
2024 Updates: Updated online assessment platform, new interview formats
Based on candidate experiences from 2024 Mahindra interviews:
2024 Interview Process:
Common 2024 Interview Topics:
Success Tips:
For detailed interview experiences, visit Mahindra Interview Experience page.