Mindtree 2025 papers
Latest Mindtree placement papers with current year questions
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 |
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.
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
Solution:
Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.
Answer: 54 km/h
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
Solution:
Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.
Answer: 22
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:
Pattern: letter positions: B=2,A=1,T=20
Therefore BAT → 2120.
Answer: 2120
Solution:
‘Optimistic’ means roughly the opposite of Pessimistic.
Answer: Pessimistic
Solution:
Use since with a point in time; use for with a duration.
Correct: since.
Answer: since
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: 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)
Problem Statement: Return true if the string reads the same forward and backward (ignore case).
Example:
Input: "Level"Output: trueSolution (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)
Based on candidate experiences from 2024 Mindtree interviews:
2024 Interview Process:
Common 2024 Interview Topics:
2024 Interview Questions Examples:
Success Tips:
For detailed interview experiences, visit Mindtree Interview Experience page.
Mindtree 2025 papers
Latest Mindtree placement papers with current year questions
Mindtree aptitude questions
Complete collection of Mindtree aptitude problems
Mindtree interview experience
Real interview experiences from successful candidates
Mindtree preparation guide
Comprehensive preparation strategy for Mindtree placement
Mindtree main page
Complete Mindtree placement guide with eligibility, process, and salary
Infosys · TCS · Wipro · Accenture · Capgemini · HCL
Practice 2024 papers to understand Mindtree pattern and prepare effectively!