AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by Tech Mahindra Team. If you also belong to the team, you can get access from here

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 38.5k Reviews

Play video Play video Video summary
  • About
  • Reviews
    38.5k
  • Salaries
    2.7L
  • Interviews
    4.2k
  • Jobs
    450
  • Benefits
    3.8k
  • Photos
    74
  • Posts
    41

Filter interviews by

Tech Mahindra Associate Software Engineer Interview Questions and Answers

Updated 3 Jul 2025

56 Interview questions

An Associate Software Engineer was asked 1mo ago
Q. Write a query to find the second-highest salaried employee.
Ans. 

To find the 2nd highest salaried employee, we can use sorting or a set to identify unique salaries.

  • Use a database query: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • In an array: Sort the array of salaries and access the second last element.

  • Using a set: Convert the salary list to a set to remove duplicates, then sort it.

An Associate Software Engineer was asked 3mo ago
Q. Why is Python being preferred over Java by new coders?
Ans. 

Python's simplicity, readability, and versatility make it a popular choice for new coders compared to Java.

  • Python has a simpler syntax, making it easier for beginners to learn and write code. For example, printing 'Hello, World!' is just 'print("Hello, World!")' in Python.

  • Python's extensive libraries and frameworks, like Django for web development and NumPy for data science, allow for rapid development.

  • Python supp...

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
View answers (2)
asked in Hexaware Technologies
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
View answer (1)
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
View answers (2)
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
View answer (1)
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
View answer (1)
View All
An Associate Software Engineer was asked 3mo ago
Q. What is machine learning?
Ans. 

Machine learning is a subset of artificial intelligence that enables systems to learn from data and improve over time without explicit programming.

  • Machine learning algorithms identify patterns in data to make predictions or decisions.

  • Common types include supervised learning (e.g., spam detection) and unsupervised learning (e.g., customer segmentation).

  • Applications range from image recognition (e.g., facial recogni...

An Associate Software Engineer was asked 3mo ago
Q. Explain the key concepts of DBMS.
Ans. 

DBMS manages data storage, retrieval, and manipulation, ensuring data integrity and security in databases.

  • Data Models: Defines how data is structured (e.g., relational, hierarchical). Example: Relational model uses tables.

  • Database Schema: The blueprint of the database, outlining tables, fields, and relationships. Example: A schema for a library database.

  • Data Manipulation Language (DML): Used for querying and modif...

What people are saying about Tech Mahindra

View All
a senior software engineer
2d (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about Tech Mahindra?
Ask anonymously on communities.
An Associate Software Engineer was asked 7mo ago
Q. Why do you prefer Java?
Ans. 

I prefer Java for its platform independence, strong community support, and extensive libraries.

  • Platform independence allows Java code to run on any device with a Java Virtual Machine (JVM)

  • Strong community support ensures quick resolution of issues and access to resources

  • Extensive libraries provide pre-built solutions for common programming tasks

  • Java is widely used in enterprise applications, web development, and m...

An Associate Software Engineer was asked 7mo ago
Q. What are the core concepts of OOP?
Ans. 

Object-oriented programming paradigm focusing on objects and classes.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

  • Inheritance: Ability of a class to inherit properties and behavior from another class.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementation details and showing only the necessary featur...

An Associate Software Engineer was asked 7mo ago
Q. What do you mean by ML?
Ans. 

ML stands for Machine Learning, a subset of artificial intelligence that focuses on the development of algorithms and models that allow computers to learn from and make predictions or decisions based on data.

  • ML involves training algorithms to recognize patterns in data and make decisions or predictions without being explicitly programmed.

  • Common techniques in ML include supervised learning, unsupervised learning, a...

Are these interview questions helpful?
An Associate Software Engineer was asked 7mo ago
Q. What are pointers?
Ans. 

Pointers are variables that store memory addresses of other variables or functions.

  • Pointers are used to access and manipulate memory directly.

  • They are commonly used in programming languages like C and C++.

  • Example: int *ptr; // declaring a pointer to an integer variable

An Associate Software Engineer was asked 7mo ago
Q. What are the types of joins?
Ans. 

Types of joins include inner join, outer join (left, right, full), cross join, and self join.

  • Inner join: Returns rows when there is a match in both tables

  • Outer join: Returns all rows from one table and matching rows from the other table

  • Cross join: Returns the Cartesian product of the two tables

  • Self join: Joins a table to itself

An Associate Software Engineer was asked 7mo ago
Q. What technologies did you use in your projects?
Ans. 

I have experience working with technologies such as Java, Python, SQL, HTML, CSS, JavaScript, and Git in my projects.

  • Java

  • Python

  • SQL

  • HTML

  • CSS

  • JavaScript

  • Git

1 2 3 4 5 6

Tech Mahindra Associate Software Engineer Interview Experiences

128 interviews found

Associate Software Engineer Interview Questions & Answers

user image Punit Kumar

posted on 20 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Swap two variables, prime number
  • Ans. 

    To swap two variables, use a temporary variable to store one value before swapping them.

    • Create a temporary variable to store one of the values

    • Assign the first variable to the temporary variable

    • Assign the second variable to the first variable

    • Assign the temporary variable to the second variable

  • Answered by AI
    Add your answer
  • Q2. Based on Linux, SQL and other
  • Add your answer
  • Q3. What are pointers
  • Ans. 

    Pointers are variables that store memory addresses of other variables or functions.

    • Pointers are used to access and manipulate memory directly.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declaring a pointer to an integer variable

  • Answered by AI
    Add your answer
  • Q4. Commands on SQL and Linux
  • Add your answer
  • Q5. Questions related to HR
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Aptitude test and general knowledge
  • Add your answer
  • Q2. Coding exam and mcq question
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a good start for new commers.
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Darshan roopa

posted on 29 Nov 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2024.

Round 1 - Aptitude Test 

General aptitide and logical reasoning

Round 2 - Communication 

(3 Questions)

  • Q1. Reading the displayed statements
  • Add your answer
  • Q2. Hearing and answering to the questions
  • Add your answer
  • Q3. Speak on a topic for 1 min
  • Ans. 

    The impact of artificial intelligence on society

    • AI has revolutionized various industries such as healthcare, finance, and transportation

    • Ethical concerns surrounding AI, such as job displacement and privacy issues

    • Potential benefits of AI, such as improved efficiency and decision-making

    • Examples like self-driving cars, virtual assistants, and medical diagnosis systems

  • Answered by AI
    Add your answer
Round 3 - Technical 

(5 Questions)

  • Q1. Whats oops concept?
  • Ans. 

    Object-oriented programming paradigm focusing on objects and classes.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

  • Answered by AI
    Add your answer
  • Q2. Why you prefer java?
  • Ans. 

    I prefer Java for its platform independence, strong community support, and extensive libraries.

    • Platform independence allows Java code to run on any device with a Java Virtual Machine (JVM)

    • Strong community support ensures quick resolution of issues and access to resources

    • Extensive libraries provide pre-built solutions for common programming tasks

    • Java is widely used in enterprise applications, web development, and mobile...

  • Answered by AI
    Add your answer
  • Q3. Explain about your projects?
  • Add your answer
  • Q4. Most of the questions were from my resume, he scanned my resume through his eyes, and started directly with my projects?
  • Add your answer
  • Q5. What do you mean by ML?
  • Ans. 

    ML stands for Machine Learning, a subset of artificial intelligence that focuses on the development of algorithms and models that allow computers to learn from and make predictions or decisions based on data.

    • ML involves training algorithms to recognize patterns in data and make decisions or predictions without being explicitly programmed.

    • Common techniques in ML include supervised learning, unsupervised learning, and re...

  • Answered by AI
    Add your answer
Round 4 - HR 

(6 Questions)

  • Q1. Tell me about yourself that is not mentioned in your resume?
  • Ans. 

    I am an avid hiker and have climbed several mountains in my free time.

    • I enjoy outdoor activities like hiking and camping

    • I have climbed Mount Kilimanjaro and Mount Rainier

    • I find solace in nature and often go on solo hikes

  • Answered by AI
    Add your answer
  • Q2. Why we should prefer you over other candidates?
  • Add your answer
  • Q3. Why tech mahindra?
  • Add your answer
  • Q4. Are comfortable with Pan India?
  • Add your answer
  • Q5. How do you work in teams?
  • Add your answer
  • Q6. How do you tackle any problem thats faced by you?
  • Ans. 

    I approach problems methodically by breaking them down into smaller tasks, researching possible solutions, and seeking input from colleagues.

    • Identify the root cause of the problem

    • Break down the problem into smaller, manageable tasks

    • Research possible solutions and best practices

    • Seek input and feedback from colleagues or mentors

    • Implement a solution and test it thoroughly

    • Iterate on the solution if necessary

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Tech Mahindra Associate Software Engineer interview:
  • Cs fundamentals
Interview preparation tips for other job seekers - I have given interviews at TCS, Tech mahindra , Cognizant, Happiest Minds Technologies, Sopra Steria, FIS.
The thing what I came to know after all this is,
Try grinding Core CS fundamentals? Thats more than enough, do not waste time on complecated Concepts.

Look I will tell you the reality,
to get a entry level job that too in Service Based MNCs like Tcs , Tech mahindra , Cognizant etc you need be good at just CS Fundamentals along with leetcode easy level Coding Questions. Thats it.

Skills evaluated in this interview

Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SQL questions on how to remove dupliates
  • Add your answer
Round 2 - HR 

(1 Question)

  • Q1. About company and walk me through your resume
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude was easy, all that matters is speed.

Round 2 - Coding Test 

Coding questions were also easy uf you are well aware of the basic concepts of whatever programming language you choose.

Round 3 - Technical 

(4 Questions)

  • Q1. What is Github, where and how you have used it?
  • Ans. 

    GitHub is a web-based platform for version control and collaboration, allowing developers to manage and share code repositories.

    • Used GitHub to host personal projects, enabling easy access and collaboration with others.

    • Utilized GitHub for version control in team projects, tracking changes and managing code contributions.

    • Participated in open-source projects on GitHub, contributing code and documentation to enhance commun...

  • Answered by AI
    Add your answer
  • Q2. Explain MongoDB
  • Ans. 

    MongoDB is a NoSQL database that stores data in flexible, JSON-like documents, allowing for dynamic schemas and scalability.

    • Document-oriented: Data is stored in BSON format, which is similar to JSON, allowing for nested structures.

    • Schema-less: Collections can have different fields and data types, making it flexible for evolving applications.

    • Scalability: Supports horizontal scaling through sharding, distributing data ac...

  • Answered by AI
    Add your answer
  • Q3. What is CSS ? Why do we use it over HtML ?
  • Add your answer
  • Q4. After being asked about MongoDB, what is JSON?
  • Ans. 

    JSON (JavaScript Object Notation) is a lightweight data interchange format that's easy for humans to read and write.

    • JSON is text-based and uses a syntax similar to JavaScript objects.

    • It consists of key-value pairs, e.g., {"name": "John", "age": 30}.

    • JSON supports data types like strings, numbers, arrays, and objects.

    • It's commonly used for APIs and data storage, especially in NoSQL databases like MongoDB.

    • JSON is language...

  • Answered by AI
    Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Prayag Raj Mathuria

posted on 3 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test was on moderate level.

Round 2 - Coding Test 

The coding test was comparitively very easy.

Round 3 - Assignment 

It was an online english speaking and reading test.

Round 4 - Technical 

(2 Questions)

  • Q1. The first question was about introduction
  • Add your answer
  • Q2. Second question was about project
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. Basic HR Question
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Process is easy. Technical Round is easy comparitve to other company.
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Nikhitha Kommera

posted on 4 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

It was quantitative and reasoning

Round 2 - Coding Test 

Coding and SQL questions

Round 3 - Technical 

(1 Question)

  • Q1. Explain about Oops concepts in detail
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hides the complex implementat...

  • Answered by AI
    Add your answer
Round 4 - HR 

(1 Question)

  • Q1. General hr questions
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test on shl

Round 2 - Coding Test 

2 question on shl platform

Round 3 - Technical 

(2 Questions)

  • Q1. Project related
  • Add your answer
  • Q2. Coding dsa question easy level
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Aug 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

It was easy. The test took around 1.5 hours.

Round 2 - Coding Test 

It was around 1.5 hours with 45mins for 2 easy coding questions and remaining time for behavioural questions.

Round 3 - Conversational Test 

(2 Questions)

  • Q1. Read the following sentence shown on screen.
  • Add your answer
  • Q2. Answer questions from a passage you heard.
  • Add your answer
Round 4 - Technical 

(2 Questions)

  • Q1. Yet to appear for this round
  • Add your answer
  • Q2. Yet to appear for this round of interview
  • Add your answer
Round 5 - HR 

(2 Questions)

  • Q1. Yet to appear for this round
  • Add your answer
  • Q2. Yet to appear for this round of interview
  • Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Aptitude Test 

This round includes several, but easy aptitude questions on topics like ratio, percentage, profit-loss etc.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Associate Software Engineer interview:
  • Any coding language
  • dbms
  • sql
  • python
Interview preparation tips for other job seekers - Prepare your resume completely. Most questions asked in Technical round were based on your resume.
Anonymous
More about working at Tech Mahindra
  • HQ - Pune, Maharashtra, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public
  • Analytics & KPO
  • Engineering & Construction

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Associate Software Engineer interview?
Tech Mahindra interview process usually has 3-4 rounds. The most common rounds in the Tech Mahindra interview process are Aptitude Test, Technical and HR.
How to prepare for Tech Mahindra Associate Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tech Mahindra. The most common topics and skills that interviewers at Tech Mahindra expect are Software Engineering, Automation Testing, Customer Handling, Information Technology and Java.
What are the top questions asked in Tech Mahindra Associate Software Engineer interview?

Some of the top questions asked at the Tech Mahindra Associate Software Engineer interview -

  1. 2) Can you call the base class method without creating an instan...read more
  2. 1) What is NullPointerExceprion and give me a examp...read more
  3. 5) What are access specifiers and what is their significan...read more
What are the most common questions asked in Tech Mahindra Associate Software Engineer HR round?

The most common HR questions asked in Tech Mahindra Associate Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the Tech Mahindra Associate Software Engineer interview process?

The duration of Tech Mahindra Associate Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Tech Mahindra Interviews By Designations

  • Tech Mahindra Software Engineer Interview Questions
  • Tech Mahindra Senior Software Engineer Interview Questions
  • Tech Mahindra Customer Service Associate Interview Questions
  • Tech Mahindra Associate Software Engineer Interview Questions
  • Tech Mahindra Customer Support Associate Interview Questions
  • Tech Mahindra Customer Service Executive Interview Questions
  • Tech Mahindra Customer Care Executive Interview Questions
  • Tech Mahindra Software Developer Interview Questions
  • Show more
  • Tech Mahindra Customer Support Executive Interview Questions
  • Tech Mahindra Technical Lead Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • System Engineer Interview Questions
  • Project Engineer Interview Questions
  • Associate Consultant Interview Questions
  • Senior Software Developer Interview Questions
  • Show more
  • Lead Engineer Interview Questions
  • Lead Software Engineer Interview Questions

Overall Interview Experience Rating

4.3/5

based on 114 interview experiences

Difficulty level

Easy 34%
Moderate 62%
Hard 4%

Duration

Less than 2 weeks 44%
2-4 weeks 35%
4-6 weeks 13%
6-8 weeks 3%
More than 8 weeks 6%
View more

Top Skills for Tech Mahindra Associate Software Engineer

C++ Interview Questions & Answers
300 Questions
Java Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions

Associate Software Engineer Interview Questions from Similar Companies

Accenture
Accenture Associate Software Engineer Interview Questions
3.7
 • 654 Interviews
TCS
TCS Associate Software Engineer Interview Questions
3.6
 • 99 Interviews
DXC Technology
DXC Technology Associate Software Engineer Interview Questions
3.6
 • 51 Interviews
Capgemini
Capgemini Associate Software Engineer Interview Questions
3.7
 • 33 Interviews
Cognizant
Cognizant Associate Software Engineer Interview Questions
3.7
 • 27 Interviews
Infosys
Infosys Associate Software Engineer Interview Questions
3.6
 • 23 Interviews
IBM
IBM Associate Software Engineer Interview Questions
3.9
 • 20 Interviews
HCLTech
HCLTech Associate Software Engineer Interview Questions
3.5
 • 17 Interviews
Wipro
Wipro Associate Software Engineer Interview Questions
3.7
 • 13 Interviews
LTIMindtree
LTIMindtree Associate Software Engineer Interview Questions
3.7
 • 9 Interviews
View all
Tech Mahindra Associate Software Engineer Salary
based on 6.2k salaries
₹1.9 L/yr - ₹5.6 L/yr
36% less than the average Associate Software Engineer Salary in India
View more details

Tech Mahindra Associate Software Engineer Reviews and Ratings

based on 674 reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.0

Salary

3.6

Job security

3.6

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 674 Reviews and Ratings
Tech Mahindra Salaries in India
Software Engineer
26.7k salaries
unlock blur

₹3.7 L/yr - ₹9.2 L/yr

Senior Software Engineer
22.2k salaries
unlock blur

₹9.2 L/yr - ₹18.9 L/yr

Technical Lead
12.5k salaries
unlock blur

₹17 L/yr - ₹30 L/yr

Associate Software Engineer
6.2k salaries
unlock blur

₹1.9 L/yr - ₹5.6 L/yr

Team Lead
5.3k salaries
unlock blur

₹6.5 L/yr - ₹17.9 L/yr

Explore more salaries
Compare Tech Mahindra with
Infosys

Infosys

3.6
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.7
Compare
Wipro

Wipro

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Tech Mahindra Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter