Skip to content

Mahindra Placement Papers 2024

Overview

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.

Download 2024 Placement Papers

Mahindra exam pattern 2024

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:

  • Updated question patterns
  • Increased focus on practical skills
  • New evaluation criteria

Mahindra Placement Papers 2024 - actual questions & solutions

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.

Question 1

Q1: A and B together finish a job in 10 days. B alone takes 15 days. How many days does A alone take?

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

Question 2

Q2: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Question 3

Q3: A number is increased by 25% and then decreased by 25%. Find the net percentage change.

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

Question 4

Q4: Average of 5 numbers is 20. If one number 15 is replaced by 25, what is the new average?

Solution:

Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.

Answer: 22

Question 5

Q5: If in a certain code CAT is written as 3120 and DOG as 4157, how is BAT written?

Solution:

Pattern: letter positions: B=2,A=1,T=20

Therefore BAT → 2120.

Answer: 2120

Question 6

Q6: Pointing to a photo, Ravi said, ‘He is the son of my grandfather’s only son.’ How is the person related to Ravi?

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

Question 7

Q7: Which normal form removes transitive dependency?

Solution:

1NF: atomic values. 2NF: no partial dependency. 3NF: no transitive dependency.

Answer: 3NF

Question 8

Q8: Virtual memory is typically implemented using?

Solution:

OS uses demand paging (and sometimes segmentation) to implement virtual memory.

Answer: Demand paging

Question 9: two sum

Show solution

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 = 9
Output: [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)

Question 10: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (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)

Question 11: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [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

Key insights from 2024 Mahindra Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on domain knowledge, automotive/engineering basics
  3. Verbal Ability: Important for communication-focused roles
  4. Time Management: 20-25 aptitude in 30-40 min + 15-20 technical in 25-30 min + 10-15 verbal in 15-20 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Mahindra assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, domain knowledge, verbal ability

Mahindra 2024 interview experiences

Based on candidate experiences from 2024 Mahindra interviews:

2024 Interview Process:

  1. Online Assessment (60-90 minutes): Aptitude (20-25) + Technical (15-20) + Verbal (10-15)
  2. Technical Interview (45-60 minutes): Domain knowledge, automotive/engineering concepts, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, automotive industry interest

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, time and work
  • Technical: Domain knowledge, automotive/engineering concepts, problem-solving
  • Verbal: Comprehension, grammar, communication skills
  • Behavioral: Problem-solving approach, teamwork, motivation, automotive industry interest

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand automotive/engineering basics and Mahindra’s diverse business portfolio
  • Prepare behavioral examples using STAR format
  • Understand Mahindra’s business model and automotive services
  • Practice verbal ability - comprehension and grammar

For detailed interview experiences, visit Mahindra Interview Experience page.

Preparation tips for Mahindra 2024 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Domain Knowledge: Basic understanding of automotive/engineering and Mahindra’s diverse portfolio
  3. Practice Previous Year Papers: Solve Mahindra assessment papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30-40 minutes
  5. Verbal Ability: Practice comprehension and grammar
  6. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, automotive interest
  7. Mock Tests: Take timed practice tests to improve speed and accuracy
  8. Automotive Focus: Understand automotive industry trends and Mahindra’s services
  9. Communication Skills: Practice articulating thoughts clearly
  10. Business Awareness: Stay updated with Mahindra’s business initiatives and industry trends

Comments & Suggestions

Similar companies

TCS · Infosys · Wipro · Zoho · Flipkart · Paytm