Skip to content

Mindtree Placement Papers 2024

This page collects Mindtree 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 Mindtree patterns and the latest shifts.

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

Mindtree Placement Papers 2024 - actual questions & solutions

Section titled “Mindtree Placement Papers 2024 - actual questions & solutions”

This section contains practice questions styled on Mindtree 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.

Q1: The ratio of ages of A and B is 2:3. After 6 years, the ratio becomes 3:4. Find A’s present age.

Solution:

Let ages be 2x and 3x.

(2x + 6)/(3x + 6) = 3/4 4(2x + 6) = 3(3x + 6) 8x + 24 = 9x + 18 x = 6 A’s age = 2×6 = 12 years.

Answer: 12 years

Q2: A train 240 m long crosses a pole in 16 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.

Answer: 54 km/h

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

Solution:

Let original = 100. After +10% → 110. After −10% → 110 − 11 = 99.

Net change = 100 − 99 = 1. Net % = 1% decrease (always a loss of (10/10)² %).

Answer: 1% decrease

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

Q5: 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

Q6: 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

Q7: Choose the antonym of ‘Optimistic’.

Solution:

‘Optimistic’ means roughly the opposite of Pessimistic.

Answer: Pessimistic

Q8: Fill in the blank: ‘She has been working here _____ 2019.’

Solution:

Use since with a point in time; use for with a duration.

Correct: since.

Answer: since

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)

Show solution

Problem Statement: Given a string, return it reversed.

Example:

Input: "placement"
Output: "tnemecalp"

Solution (Java):

public String reverse(String s) {
return new StringBuilder(s).reverse().toString();
}

Time Complexity: O(n)
Space Complexity: O(n)

Show solution

Problem Statement: Return true if the string reads the same forward and backward (ignore case).

Example:

Input: "Level"
Output: true

Solution (Java):

public boolean isPalindrome(String s) {
s = s.toLowerCase();
int i = 0, j = s.length() - 1;
while (i < j) {
if (s.charAt(i++) != s.charAt(j--)) return false;
}
return true;
}

Time Complexity: O(n)
Space Complexity: O(1)

Key insights from 2024 Mindtree Online Assessment

Section titled “Key insights from 2024 Mindtree Online Assessment”
  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, domain knowledge
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Mindtree assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, domain knowledge

Based on candidate experiences from 2024 Mindtree interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, domain knowledge, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, ages, percentages
  • Technical: Programming concepts, DBMS, OOPs, domain knowledge
  • Coding: Arrays, strings, basic algorithms
  • Behavioral: Problem-solving approach, teamwork, motivation

2024 Interview Questions Examples:

  • Ages Problem
  • Percentage Calculation
  • Basic programming concepts and OOPs questions
  • DBMS queries and concepts

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand Mindtree’s business model and service offerings

For detailed interview experiences, visit Mindtree Interview Experience page.

Preparation tips for Mindtree 2024 pattern

Section titled “Preparation tips for Mindtree 2024 pattern”
  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
  3. Practice Previous Year Papers: Solve Mindtree assessment papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  5. Coding Practice: Practice arrays, strings, basic algorithms
  6. Technical MCQs: Practice programming concepts, DBMS, OOPs
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, problem-solving
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Service-Based Focus: Understand service-based company culture and expectations
  10. Communication Skills: Practice articulating thoughts clearly

Infosys · TCS · Wipro · Accenture · Capgemini · HCL


Practice 2024 papers to understand Mindtree pattern and prepare effectively!