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.1k Reviews

Play video Play video Video summary
  • About
  • Reviews
    38.1k
  • Salaries
    2.7L
  • Interviews
    4.1k
  • Jobs
    401
  • Benefits
    3.8k
  • Photos
    73
  • Posts
    41

Filter interviews by

Tech Mahindra Software Engineer Interview Questions and Answers

Updated 23 Jun 2025

70 Interview questions

A Software Engineer was asked 3d ago
Q. What are the key concepts of Object-Oriented Programming, and why are they used?
Ans. 

Key concepts of Object-Oriented Programming include encapsulation, inheritance, polymorphism, and abstraction, enhancing code reusability.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class from an existing class, inheriting its attributes and metho...

A Software Engineer was asked 2mo ago
Q. What is Kotlin?
Ans. 

Kotlin is a modern, statically typed programming language designed for JVM, Android, and web development, emphasizing safety and conciseness.

  • Kotlin is fully interoperable with Java, allowing developers to use existing Java libraries.

  • It supports functional programming features, such as higher-order functions and lambda expressions. Example: val sum = { a: Int, b: Int -> a + b }

  • Kotlin has null safety built into i...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (279)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (528)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked 2mo ago
Q. Tell me about your projects and training.
Ans. 

I have worked on diverse projects, including web applications, mobile apps, and machine learning models, enhancing my technical skills.

  • Developed a full-stack web application using React and Node.js for a local business, improving their online presence.

  • Created a mobile app for tracking fitness goals, utilizing Flutter and Firebase for real-time data synchronization.

  • Participated in a machine learning project that pr...

A Software Engineer was asked 2mo ago
Q. What are some basic OOPS concepts?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present th...

What people are saying about Tech Mahindra

View All
a senior engineer
2d
💼 OFFER RECEIVED – Sr. Test Engineer (Band U3) | Tech Mahindra | Noida 📎 Screenshot attached | CTC: ₹13.5 LPA
✅ Variable is paid monthly and fully (as confirmed by HR) ❓ Looking to know the MONTHLY IN-HAND SALARY after standard deductions & partial FBP usage Would appreciate any insights from current/ex-TechM folks! 🙏
FeedCard Image
Got a question about Tech Mahindra?
Ask anonymously on communities.
A Software Engineer was asked 10mo ago
Q. Explain Cross Join.
Ans. 

A cross join produces a Cartesian product of two tables, combining every row from one table with every row from another.

  • Cross join results in a Cartesian product, meaning if Table A has 3 rows and Table B has 4 rows, the result will have 12 rows.

  • It does not require any condition to join tables, unlike inner or outer joins.

  • Example: If Table A has {1, 2} and Table B has {X, Y}, the result will be {(1, X), (1, Y), (2...

A Software Engineer was asked 11mo ago
Q. What is the difference between a function and a procedure?
Ans. 

Function returns a value while procedure does not.

  • Function returns a value, procedure does not

  • Functions are used for calculations and return a value, procedures are used for executing a sequence of statements

  • Example: Function to calculate the square of a number, Procedure to display a message

A Software Engineer was asked 11mo ago
Q. What are the differences between SQL and PL/SQL?
Ans. 

SQL is a standard language for managing relational databases, while PL/SQL is a procedural extension for SQL.

  • SQL is a standard language used to manage and manipulate data in relational databases.

  • PL/SQL is a procedural language extension for SQL, allowing for more complex programming capabilities.

  • SQL is used for querying and updating data, while PL/SQL is used for writing procedural code like loops and conditional ...

Are these interview questions helpful?
A Software Engineer was asked 11mo ago
Q. How do you find the second largest number in an array?
Ans. 

Iterate through array to find second max number

  • Iterate through the array and keep track of the largest and second largest numbers

  • Compare each element with the largest and second largest numbers to update them accordingly

  • Return the second largest number found

🔥 Asked by recruiter 2 times
A Software Engineer was asked 12mo ago
Q. Write a program to generate the Fibonacci sequence.
Ans. 

A program to generate Fibonacci series using iterative or recursive approach.

  • Use a loop to generate Fibonacci series iteratively

  • Use recursion to generate Fibonacci series recursively

  • Start with 0 and 1 as the first two numbers in the series

  • Add the previous two numbers to get the next number in the series

A Software Engineer was asked 12mo ago
Q. What are the features of the AWS platform?
Ans. 

AWS platform offers a wide range of features for cloud computing services.

  • Scalability: Easily scale resources up or down based on demand

  • Flexibility: Choose from a variety of programming languages, databases, and operating systems

  • Security: Built-in security features to protect data and applications

  • Cost-effective: Pay only for the resources you use

  • Reliability: High availability and redundancy to ensure uptime

  • Storage...

1 2 3 4 5 6 7

Tech Mahindra Software Engineer Interview Experiences

200 interviews found

Software Engineer Interview Questions & Answers

user image MODEM HARI KUMAR

posted on 21 Jun 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. What is the difference between String and StringBuilder, and in what circumstances should each be used?
  • Ans. 

    String is immutable; StringBuilder is mutable. Use String for fixed text, StringBuilder for dynamic string manipulation.

    • Strings are immutable, meaning once created, they cannot be changed. Example: String str = 'Hello'; str = str + ' World';

    • StringBuilder is mutable, allowing for dynamic modifications without creating new objects. Example: StringBuilder sb = new StringBuilder('Hello'); sb.Append(' World');

    • Use String for...

  • Answered by AI
    Add your answer
  • Q2. What are the key concepts of Object-Oriented , and why are they used?
  • Ans. 

    Key concepts of Object-Oriented Programming include encapsulation, inheritance, polymorphism, and abstraction, enhancing code reusability.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.

    • Inheritance: Mechanism to create a new class from an existing class, inheriting its attributes and methods. E...

  • Answered by AI
    Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image RISHIK REDDY.P

posted on 23 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. What was your role and contributions in your projects?
  • Ans. 

    I was responsible for designing and implementing new features, fixing bugs, and optimizing performance in various projects.

    • Designed and implemented new features based on client requirements

    • Fixed bugs reported by QA team or end users

    • Optimized performance by refactoring code or improving algorithms

    • Collaborated with team members to ensure project deadlines were met

  • Answered by AI
    Add your answer
  • Q3. Are you willing to relocate?
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Dec 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions based on resume
  • Add your answer
  • Q2. Python, sql, resume based questions
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Dec 2024

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

SIMPLE QUESTIONS, go through sample aptitude questions on google

Round 2 - Technical 

(2 Questions)

  • Q1. ABOUT PROJECT DETAILS
  • Add your answer
  • Q2. BASIC CODING QUESTIONS AND SCENARIO BASED QUESTIONS
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well, do well. usually, interviewers ask simple questions only. Proper understanding is important
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Medium level aptitude questions were asked with an essay to be written at end.

Round 2 - Coding Test 

Basic coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Give your self Intro
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and implementing innovative solutions.

    • Experienced in programming languages such as Java, Python, and JavaScript

    • Proficient in front-end technologies like HTML, CSS, and React

    • Familiar with Agile development methodologies and version control systems like Git

  • Answered by AI
    Add your answer
  • Q2. Basic Sql queries were asked
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Why Tech Mahindra?
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Node JS important questions.
  • Add your answer
  • Q2. JS core concepts. SQL queries
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2025

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

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. They will check your capability to work, think and answer under pressure.
  • Add your answer
  • Q2. General technical questions like what is object?
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Sep 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test was Simple Questions were on Topic such as "Ages", "Profit and Loss" Beginner - Intermediate Level, After Clearing Aptitude Test if you clear Essay Test will be triggered.

Round 2 - Coding Test 

Coding Test will have different section for Language realted MCQ, SQL query related Questions, 2 Coding Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Focus on Basics and Read Questions Carefully
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario based questions
  • Add your answer
  • Q2. Basic questions as technology was new
  • Add your answer
Round 2 - HR 

(2 Questions)

  • Q1. Previous company details
  • Add your answer
  • Q2. Expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for software engineers.

    • Consider my years of experience in software development.

    • Take into account my expertise in specific programming languages or technologies.

    • Research the average salary for software engineers in this location and industry.

    • Negotiate based on the benefits and perks offered by the company.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

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

Normal Aptitude Questions

Round 2 - Coding Test 

Simple Coading Questions

Round 3 - Technical 

(3 Questions)

  • Q1. What is Finally Block
  • Add your answer
  • Q2. Explain Method Overriding
  • Add your answer
  • Q3. Explain Cross join
  • Add your answer

Skills evaluated in this interview

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 Software Engineer interview?
Tech Mahindra interview process usually has 2-3 rounds. The most common rounds in the Tech Mahindra interview process are Technical, HR and Aptitude Test.
How to prepare for Tech Mahindra 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, Java, SQL, Javascript and Python.
What are the top questions asked in Tech Mahindra Software Engineer interview?

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

  1. Tell me something about yourself. Define encapsulation. What is inheritance. ...read more
  2. If you found/ raise a bug on the bug tracking tool and the developer review the...read more
  3. How do we pass data from one component to another in Rea...read more
What are the most common questions asked in Tech Mahindra Software Engineer HR round?

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

  1. Why should we hire y...read more
  2. What are your strengths and weakness...read more
  3. Tell me about yourse...read more
How long is the Tech Mahindra Software Engineer interview process?

The duration of Tech Mahindra 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 Customer Support Associate Interview Questions
  • Tech Mahindra Associate Software Engineer 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
  • Senior Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • System Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Project Engineer Interview Questions
  • Lead Engineer Interview Questions
  • Software Development Engineer Interview Questions
  • Show more
  • Lead Software Engineer Interview Questions
  • Senior Developer Interview Questions

Overall Interview Experience Rating

4.2/5

based on 167 interview experiences

Difficulty level

Easy 29%
Moderate 67%
Hard 5%

Duration

Less than 2 weeks 71%
2-4 weeks 21%
4-6 weeks 7%
More than 8 weeks 1%
View more

Top Skills for Tech Mahindra Software Engineer

Java Interview Questions & Answers
250 Questions
Web Development Interview Questions & Answers
250 Questions
Algorithms Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions
C++ Interview Questions & Answers
150 Questions

Software Engineer Interview Questions from Similar Companies

TCS
TCS Software Engineer Interview Questions
3.6
 • 466 Interviews
Capgemini
Capgemini Software Engineer Interview Questions
3.7
 • 330 Interviews
HCLTech
HCLTech Software Engineer Interview Questions
3.5
 • 322 Interviews
Infosys
Infosys Software Engineer Interview Questions
3.6
 • 317 Interviews
LTIMindtree
LTIMindtree Software Engineer Interview Questions
3.7
 • 286 Interviews
Wipro
Wipro Software Engineer Interview Questions
3.7
 • 233 Interviews
Accenture
Accenture Software Engineer Interview Questions
3.8
 • 219 Interviews
Cognizant
Cognizant Software Engineer Interview Questions
3.7
 • 213 Interviews
Persistent Systems
Persistent Systems Software Engineer Interview Questions
3.6
 • 129 Interviews
IBM
IBM Software Engineer Interview Questions
4.0
 • 89 Interviews
View all
Tech Mahindra Software Engineer Salary
based on 26.6k salaries
₹2 L/yr - ₹11 L/yr
31% less than the average Software Engineer Salary in India
View more details

Tech Mahindra Software Engineer Reviews and Ratings

based on 2.8k reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

2.9

Salary

3.5

Job security

3.5

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 2.8k Reviews and Ratings
Software Engineer Jobs at Tech Mahindra
Tech Mahindra
Software Engineer

Mumbai

2-4 Yrs

₹ 2.8-11.55 LPA

Tech Mahindra
Sr. Software Engineer-ML Engg

Pune

3-6 Yrs

₹ 2.53-12 LPA

Tech Mahindra
SAP MM-Sr. Software Engineer

Visakhapatnam

5-9 Yrs

Not Disclosed

Explore more jobs
Tech Mahindra Salaries in India
Software Engineer
26.6k salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Senior Software Engineer
22.1k salaries
unlock blur

₹6.4 L/yr - ₹24 L/yr

Technical Lead
12.4k salaries
unlock blur

₹9.8 L/yr - ₹32.9 L/yr

Associate Software Engineer
6k salaries
unlock blur

₹1.9 L/yr - ₹5.7 L/yr

Team Lead
5.3k salaries
unlock blur

₹5.7 L/yr - ₹18.5 L/yr

Explore more salaries
Compare Tech Mahindra with
Infosys

Infosys

3.6
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.8
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