Complete Tech Mahindra Preparation Guide
Eligibility, syllabus, selection process, interview insights — everything in one place.
About the Company
Tech Mahindra is one of the world's leading IT services, consulting, and business solutions organizations. Founded in 1986 and headquartered in Pune, India, Tech Mahindra provides a wide range of services including software development, cloud computing, artificial intelligence, cybersecurity, data analytics, and digital transformation solutions to businesses across industries.
Eligibility Criteria
Ensure you meet all requirements before applying to Tech Mahindra.
Full-time B.E./B.Tech, MCA, or M.Sc in Computer Science/Information Technology disciplines.
Open primarily for the passing out batches of 2024 and 2025.
Minimum 60% or 6.0 CGPA in 10th, 12th/Diploma, and Graduation. Some roles require 70%.
Candidates must not have any active or pending backlogs at the time of the selection process.
Candidates who appeared for a Tech Mahindra interview in the last 6 months are ineligible.
A maximum education gap of 1 year is allowed between any two academic programs since 10th.
Candidates will be required to sign an indemnity bond (e.g., INR 1 Lakh) for a 2-year service period.
Only full-time degrees from recognized universities are accepted.
Salary Package
Annual CTC by role tier. Opportunities are available across roles such as Associate Software Engineer (ASE), Super Coder.
Selection Process
Your journey from application to offer letter — step by step.
Step 1 · Elimination Round
Online assessment testing logical ability, quantitative aptitude, and English language skills. It usually includes an essay/story writing component (e.g., writing a 200-word essay).
- Practice fast calculations for quantitative sections.
- Ensure your essay has a clear structure and good grammar.
Step 2 · Elimination Round
Evaluates technical knowledge (OS, CN, DBMS, OOPs) via MCQs, assesses personality traits through a psychometric test, and often includes 1-2 programming/debugging questions (Automata Fix).
- Brush up on core CS fundamentals.
- Practice debugging code in C/C++/Java.
Step 3
An AI-based assessment evaluating spoken English, pronunciation, fluency, and listening comprehension.
- Take the test in a quiet, distraction-free environment.
- Speak clearly and at a moderate pace.
Step 4
A dedicated, advanced coding test specifically for candidates shortlisted for the 'Super Coder' role. Involves solving complex algorithmic problems.
- Focus on advanced Data Structures and Algorithms.
- Practice solving competitive programming questions.
Step 5
Candidates who clear the online rounds face technical interviews (focusing on projects, coding, and CS concepts) followed by an HR interview (assessing fit, relocation, and background).
- Be prepared to explain your resume and projects in detail.
- Be ready for questions about willingness to relocate and sign a bond.
Exam Pattern
The Tech Mahindra selection process consists of multiple online assessment rounds. Candidates must clear each stage to progress to the next.
- The rounds are sequential and elimination-based. Failing round 1 means you cannot take round 2.
- The 'Super Coder' test is only for those who perform exceptionally well and meet specific academic criteria (often 70%+ throughout).
- Ensure a stable internet connection and a working webcam/microphone for all tests.
- Exact question counts and time limits may fluctuate based on the specific campus drive or off-campus cycle.
Syllabus Breakdown
Topics and their weightage in the Tech Mahindra exam.
Important Topics
High-frequency topics that appear most often in Tech Mahindra interviews and assessments.
Previous Year Questions
A mini mock simulation — pick an answer, get instant feedback and an explanation, then move to the next question.
A can do a piece of work in 15 days and B can do it in 20 days. If they work together on it for 4 days, then the fraction of the work that is left is:
Look at this series: 36, 34, 30, 28, 24, ... What number should come next?
Which of the following is the correct spelling?
In a relational database, what is the purpose of a primary key?
The following C function is supposed to find the maximum element in an array but contains a logical error. Identify the error and fix it by rewriting the correct function logic. ```c int findMax(int arr[], int n) { int max = 0; for(int i=0; i<n; i++) { if(arr[i] < max) { max = arr[i]; } } return max; } ```
Note: Pay attention to the initialization of `max` and the comparison operator.
An array of integers `arr` and its size `n`.
The maximum integer value in the array.
n = 4, arr = {-1, -5, -3, -2}-1
Explanation: The original function would return 0, which is incorrect as 0 is not in the array and is greater than all elements. The correct max is -1.
Given an array `A` of size `N` containing only 0s and 1s. Sort the array in ascending order in a single pass (O(N) time complexity) without using extra space (O(1) space complexity).
Note: Standard sorting algorithms like QuickSort or MergeSort are overkill here.
First line: N (size of array) Second line: N space-separated 0s and 1s.
N space-separated sorted 0s and 1s.
5 0 1 0 1 0
0 0 0 1 1
Explanation: Sorted order of the given binary array.
Student Interview Experiences
Real insights from students who cleared the Tech Mahindra hiring process.
The conversational AI test checked my pronunciation and grammar. The technical interview was around 20 minutes, diving into my resume projects, OOPs, and SQL queries. They also asked if I was flexible with rotational shifts.
Aptitude and coding were easy to medium difficulty. During technical, they asked me to write code to swap numbers without a third variable and reverse a string. Mentions of trending technologies gave me an advantage.