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 Engineer Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top Tech Mahindra Software Engineer Interview Questions and Answers

  • Q1. Tell me something about yourself. Define encapsulation. What is inheritance. What is constructor. What is method overloading. Can we overload a constructor. What is overr ...read more
  • Q2. Factorial Calculation Problem Given an integer N , calculate and print the factorial of N . The factorial of a number N is defined as the product of all positive integer ...read more
  • Q3. Maximum Sum Subarray Problem Statement Given an array of integers, find the maximum sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42 ...read more
View all 77 questions

Tech Mahindra Software Engineer Interview Experiences

189 interviews found

I applied via Approached by Company and was interviewed in Feb 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 - HR 

(5 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. What are your salary expectations?
  • Q3. What is your family background?
  • Q4. Tell me about yourself.
  • Q5. Were you expect your job location

Interview Preparation Tips

Interview preparation tips for other job seekers - I think your hardworking and your effects

I applied via Company Website and was interviewed in Feb 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 - Technical 

(1 Question)

  • Q1. Tell me about your self
  • Ans. This is Bharath ,I'm currently pursuing b tech final year in ece ,I'm completed intermediate at srivedha junior college Hanamkona , percentage is 75
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Free Trials, 4 to 5 calls Daily

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image Samyuktha Boga

posted on 4 Sep 2023

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

I applied via Walk-in and was interviewed before Sep 2022. There were 5 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 

Duration was around 90 min

Round 3 - Coding Test 

2 coding questions with time period of 30 min, can choose any programming language

Round 4 - Technical 

(1 Question)

  • Q1. Technical skills mentioned on resume, academic project
Round 5 - HR 

(1 Question)

  • Q1. General questions

I applied via Approached by Company and was interviewed in Apr 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 - Assignment 

Write about something

Interview Preparation Tips

Topics to prepare for Tech Mahindra Software Engineer interview:
  • Javascript
  • Python
Interview preparation tips for other job seekers - Asking yourself.and what ur expected salary.which type of project ru submitted.

Tech Mahindra interview questions for designations

 Senior Software Engineer

 (150)

 Associate Software Engineer

 (116)

 Junior Software Engineer

 (14)

 Software Engineer Trainee

 (7)

 Software Testing Engineer

 (6)

 Assistant Software Engineer

 (2)

 Software Development Engineer

 (1)

 Embedded Software Engineer

 (1)

I applied via Recruitment Consulltant

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 - HR 

(1 Question)

  • Q1. Ask about introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - No feel tension and speak properly and tell one word answers..

Get interview-ready with Top Tech Mahindra Interview Questions

I applied via Company Website and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Particular subject what they given

Round 2 - Group Discussion 

Topic must be hailet and best explanation best confidence should be able to perform

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be shey express your talent, confidence must always be with you

Software Engineer Jobs at Tech Mahindra

View all

I applied via Referral and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Oops concepts.
  • Q2. Java basic programs
  • Q3. Palindrome,armstrong etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - first round is online Assessment
second round Technical
Third HR
(Be confident on Basics )

I applied via Job Portal and was interviewed in Dec 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 - Technical 

(1 Question)

  • Q1. Tell me your daily activities
Round 3 - HR 

(1 Question)

  • Q1. What are your Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - In don’t have any references right now. Will share if any.

I was interviewed before Apr 2021.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with coding questions and OOPS questions.

  • Q1. 

    Factorial Calculation Problem

    Given an integer N, calculate and print the factorial of N. The factorial of a number N is defined as the product of all positive integers up to N.

    Example:

    Input:
    N = 4
    ...
  • Ans. 

    Calculate and print the factorial of a given integer N.

    • Iterate from 1 to N and multiply each number to calculate factorial.

    • Handle edge cases like N=0 or N=1 separately.

    • Use recursion to calculate factorial efficiently.

    • Consider using dynamic programming to optimize factorial calculation.

    • Ensure to handle large values of N to prevent overflow issues.

  • Answered by AI
  • Q2. 

    Reverse a String Problem Statement

    Given a string STR containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.

    Input:

    The input starts with a single i...
  • Ans. 

    Reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.

    • Iterate through the characters of the string from end to start and append them to a new string to get the reversed string.

    • Use built-in functions like reverse() or StringBuilder in languages like Java for efficient reversal.

    • Handle special characters and numbers along with alphabets while reversing the string.

    • Ensure to print eac...

  • Answered by AI
  • Q3. What is the difference between malloc and calloc?
  • Ans. 

    malloc is used to allocate memory without initializing it, while calloc is used to allocate memory and initialize it to zero.

    • malloc allocates a block of memory of specified size, while calloc allocates a block of memory for an array of elements, each initialized to zero

    • malloc does not initialize the allocated memory, while calloc initializes the allocated memory to zero

    • malloc returns a pointer to the allocated memory b...

  • Answered by AI
  • Q4. What is a dangling pointer?
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated, leading to undefined behavior.

    • Dangling pointers can occur when memory is freed but the pointer is not set to NULL.

    • Accessing a dangling pointer can result in crashes, data corruption, or security vulnerabilities.

    • Example: int *ptr = new int; delete ptr; // ptr is now a dangling pointer

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with coding questions and OOPS questions.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. 

    Find the maximum sum of any contiguous subarray within an array in O(N) time complexity.

    • Use Kadane's algorithm to find the maximum sum subarray in O(N) time complexity

    • Initialize max_sum and current_sum to the first element of the array

    • Iterate through the array, updating current_sum and max_sum as needed

    • Return max_sum as the maximum sum of any contiguous subarray

  • Answered by AI
  • Q2. What are storage classes in programming?
  • Ans. 

    Storage classes in programming define the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are local to the block they are declared in.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed by multiple files.

  • Answered by AI
  • Q3. What is a copy constructor?
  • Ans. 

    A copy constructor is a special type of constructor that creates a new object as a copy of an existing object.

    • Used to initialize a new object as a copy of an existing object

    • Takes an object of the same class as a parameter

    • Often used to create deep copies of objects

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPATech Mahindra interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 - HR 

(6 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. Why should we hire you?
  • Q4. Share details of your previous job.
  • Q5. What is your family background?
  • Q6. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Will give my best for the company and for my family. Thanks

Unnat Singh

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
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 Software Engineer Interview Process

based on 154 interviews

5 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
  • HR Round - 4
View more
Tech Mahindra Software Engineer Salary
based on 26.4k salaries
₹2 L/yr - ₹9.2 L/yr
29% less than the average Software Engineer Salary in India
View more details

Tech Mahindra Software Engineer Reviews and Ratings

based on 2.6k reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

2.9

Salary

3.6

Job security

3.6

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 2.6k Reviews and Ratings
Sr. Software Engineer-Python, Golang

Hyderabad / Secunderabad

3-7 Yrs

₹ 2.75-9.58 LPA

Sr. Software Engineer

Hyderabad / Secunderabad

5-12 Yrs

Not Disclosed

Sr. Software Engineer

Hyderabad / Secunderabad

5-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
26.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
11.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
5.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
5k salaries
unlock blur

₹0 L/yr - ₹0 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