Upload Button Icon Add office photos
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

Filter interviews by

Tech Mahindra Software Developer Interview Questions, Process, and Tips

Updated 21 Feb 2025

Top Tech Mahindra Software Developer Interview Questions and Answers

View all 60 questions

Tech Mahindra Software Developer Interview Experiences

98 interviews found

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Company development

Round 2 - Coding Test 

Software developer code

Interview Preparation Tips

Interview preparation tips for other job seekers - Company development very development good development need the job
Round 1 - Aptitude Test 

Share me lonk

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about my self

Interview Preparation Tips

Interview preparation tips for other job seekers - Share me a link any one first madam/sir

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more

I applied via Approached by Company and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Group Discussion 

I am the best of the code developer

Interview Preparation Tips

Topics to prepare for Tech Mahindra Software Developer interview:
  • Java
  • C
Interview preparation tips for other job seekers - Please conduct the interview as soon as possible please could you send the email

I applied via Campus Placement and was interviewed in Aug 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Programming,verbal vebility,logical learning

Interview Preparation Tips

Interview preparation tips for other job seekers - i feel very good in both rounds.but secound round i exams is difficults copare to first round.

Tech Mahindra interview questions for designations

 Senior Software Developer

 (10)

 Software Developer fresher

 (6)

 Associate Software Developer

 (5)

 Junior Software Developer

 (4)

 Java Software Developer

 (3)

 Software Developer Intern

 (2)

 Software Developer Trainee

 (1)

 Full Stack Software Developer

 (2)

I applied via Naukri.com and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Logical, reasoning, ability test

Round 3 - Coding Test 

Scripts, scripting knowledge, javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Data structure, algorithm, Aptitude round, technical round and HR discussion

Get interview-ready with Top Tech Mahindra Interview Questions

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Software Developer interview:
  • C#.Net
  • ASP.Net
Interview preparation tips for other job seekers - Always an day time only plz schedule interview

Software Developer Jobs at Tech Mahindra

View all

I appeared for an interview in Dec 2021.

Round 1 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Immediate joining.give me the opportunity so that I can learn the new things from organisation.do better for the organisation

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I gave interview in july 2021 , they asked me questions on core java ,springboot related to my project what i did and some tricky question of multithreading my interview experience was very good.

Interview Preparation Tips

Interview preparation tips for other job seekers - try to do more practice of coding

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. About python
  • Q2. What is python interpreter
  • Ans. 

    Python interpreter is a program that executes Python code.

    • It reads Python code and converts it into machine-readable code

    • It executes the code line by line

    • It also provides a command-line interface for interactive programming

    • Examples: CPython, Jython, IronPython

  • Answered by AI
  • Q3. Who
  • Q4. Who developed python
  • Ans. 

    Python was developed by Guido van Rossum in the late 1980s.

    • Guido van Rossum started working on Python in December 1989.

    • Python's design philosophy emphasizes code readability and ease of use.

    • Python is an interpreted, high-level, general-purpose programming language.

    • Python's popularity has been steadily increasing over the years.

    • Python is open-source and has a large community of developers contributing to its development

  • Answered by AI
  • Q5. What is PEP8
  • Ans. 

    PEP8 is a style guide for Python code.

    • PEP8 provides guidelines for formatting, naming, and organizing Python code.

    • It covers topics such as indentation, line length, variable naming, and function and class definitions.

    • Adhering to PEP8 can improve code readability and maintainability.

    • Tools such as Flake8 and PyLint can be used to check code against PEP8 standards.

  • Answered by AI
  • Q6. What are the data types in python
  • Ans. 

    Python has several built-in data types including integers, floats, strings, booleans, lists, tuples, and dictionaries.

    • Integers are whole numbers without decimals

    • Floats are numbers with decimals

    • Strings are sequences of characters

    • Booleans are either True or False

    • Lists are ordered collections of items

    • Tuples are ordered, immutable collections of items

    • Dictionaries are unordered collections of key-value pairs

  • Answered by AI
  • Q7. What are the Oops concepts in python
  • Q8. What is a class
  • Ans. 

    A class is a blueprint for creating objects that have similar properties and behaviors.

    • A class is a user-defined data type that encapsulates data and functions.

    • It provides a way to organize and structure code.

    • Objects are instances of a class.

    • Classes can inherit properties and behaviors from other classes.

    • Example: A class 'Car' can have properties like 'color', 'model', and behaviors like 'start', 'stop'.

  • Answered by AI
  • Q9. What is an object
  • Ans. 

    An object is an instance of a class that encapsulates data and behavior.

    • Objects are created from classes

    • They have attributes (data) and methods (behavior)

    • Objects can interact with each other through method calls

    • Examples include a car object with attributes like make, model, and color, and methods like start and stop

    • Another example is a person object with attributes like name and age, and methods like walk and talk

  • Answered by AI
  • Q10. Tell me about inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...

  • Answered by AI
  • Q11. What is multiple inheritance
  • Ans. 

    Multiple inheritance is the ability of a class to inherit properties and behavior from multiple parent classes.

    • It allows a class to inherit from more than one parent class.

    • It can lead to the diamond problem where a class inherits from two classes that have a common base class.

    • Languages like C++ support multiple inheritance while others like Java do not.

    • Example: A class can inherit properties from both a 'Vehicle' class...

  • Answered by AI
  • Q12. What is data abstraction
  • Ans. 

    Data abstraction is the process of hiding implementation details and showing only the necessary information to the user.

    • Abstraction is achieved through abstract classes and interfaces

    • It helps in reducing complexity and increasing efficiency

    • Example: A car dashboard shows only necessary information like speed, fuel level, etc. and hides the internal workings of the car

    • Abstraction is one of the four fundamental concepts o

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - About

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures are used to manage and manipulate data.

    • They can be implemented using arrays, linked lists, trees, graphs, and other methods.

    • Examples include stacks, queues, hash tables, and binary search trees.

  • Answered by AI
  • Q2. Why database
  • Ans. 

    Databases are essential for storing and managing large amounts of data efficiently.

    • Databases allow for easy organization and retrieval of data

    • They provide data security and integrity

    • Databases enable scalability and performance optimization

    • Examples include MySQL, Oracle, MongoDB, and SQL Server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good,and bit advanced for student point of view

Skills evaluated in this interview

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Software Developer interview?
Tech Mahindra interview process usually has 2-3 rounds. The most common rounds in the Tech Mahindra interview process are Technical, Aptitude Test and HR.
How to prepare for Tech Mahindra Software Developer 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 Development, Java, Hibernate, Spring and Struts.
What are the top questions asked in Tech Mahindra Software Developer interview?

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

  1. what is the difference between call by value and call by referen...read more
  2. What is the difference b/w confidence and over confiden...read more
  3. 1)What was the introduced in c programming...read more
How long is the Tech Mahindra Software Developer interview process?

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

Tell us how to improve this page.

Tech Mahindra Software Developer Interview Process

based on 93 interviews

5 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round - 1
  • Coding Test Round - 2
  • HR Round
  • Technical Round
View more
Tech Mahindra Software Developer Salary
based on 4.3k salaries
₹2.3 L/yr - ₹15.5 L/yr
9% less than the average Software Developer Salary in India
View more details

Tech Mahindra Software Developer Reviews and Ratings

based on 375 reviews

3.9/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.4

Salary

3.8

Job security

3.8

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 375 Reviews and Ratings
Software Developer

Pune,

Bangalore / Bengaluru

5-9 Yrs

₹ 6-12 LPA

Explore more jobs
Software Engineer
26.4k salaries
unlock blur

₹2 L/yr - ₹9.4 L/yr

Senior Software Engineer
21.6k salaries
unlock blur

₹5.5 L/yr - ₹23.4 L/yr

Technical Lead
11.9k salaries
unlock blur

₹9.6 L/yr - ₹32 L/yr

Associate Software Engineer
5.7k salaries
unlock blur

₹1.8 L/yr - ₹5.9 L/yr

Team Lead
5k salaries
unlock blur

₹5.3 L/yr - ₹17.5 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.6
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview