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

Updated 26 Feb 2025

Top Tech Mahindra Senior Software Engineer Interview Questions and Answers

  • Q1. How to apply SOLID principle and what is dependency injection and why to use it and scenarios on where to use
  • Q2. In azure data factory how would you implement the functionality of tumbling window without actually using that feature already available?
  • Q3. 1)Val a = Array(1,2,1,3,4) Need output as (1,2) (2,1) (1,3) (3,4)
View all 97 questions

Tech Mahindra Senior Software Engineer Interview Experiences

149 interviews found

I applied via Recruitment Consultant and was interviewed in Jul 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is the biggest challenge you faced in developing azure solution?
  • Ans. 

    The biggest challenge in developing Azure solution was managing the complexity of the cloud environment.

    • Managing the complexity of the cloud environment

    • Ensuring scalability and reliability

    • Integrating with existing systems

    • Securing the solution

    • Optimizing cost

    • Example: Migrating a legacy application to Azure

  • Answered by AI
  • Q2. In azure data factory how would you implement the functionality of tumbling window without actually using that feature already available?
  • Ans. 

    Implementing tumbling window in Azure Data Factory without using the feature

    • Create a pipeline with a trigger that runs at the desired interval

    • Use a lookup activity to retrieve the data for the current window

    • Use a foreach activity to iterate over the retrieved data

    • Perform the required operations on the data within the foreach activity

    • Write the output to the desired destination

  • Answered by AI
  • Q3. What would be your suggestion for implementation in azure data factory v2?
  • Ans. 

    My suggestion for implementation in Azure Data Factory v2 is to use the Mapping Data Flow feature.

    • Utilize Mapping Data Flow for complex data transformations

    • Take advantage of the visual interface to design and debug data flows

    • Leverage the built-in data integration capabilities with other Azure services

    • Use data flow parameters and expressions for dynamic transformations

    • Monitor and optimize data flow performance using dat

  • Answered by AI
  • Q4. I was given a project scenario and was requested to choose from below cluster or cluster less , hive or u-sql?

Interview Preparation Tips

General Tips: Be pretty confident on the current project you are working on. It's ok that you do not know the complete technology but you should have the complete picture of stuff you are working on. Be clear as to why are using specific technology for your project and not the other one. For example, i worked on azure and drilled my way to understand the edge azure has over aws. I did good work onto why are we using hive language and azure data ware house for our project instead of using u-sql and azure SQL data base. Do not bluff, better be humble to accept that we are not fully aware of something and given a chance to work on, we will. And last thing, smile and appreciate the effort put in by interviewer.
Skills: Coding Skills, Datawarehousing, Azure data factory, Problem Solving, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

Just few normal coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Simple swift questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep this as last option

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java questions, multi threading, springboot
Round 2 - Technical 

(1 Question)

  • Q1. Live coding round. Largest common prefix
  • Ans. 

    Find the largest common prefix among an array of strings

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings

    • Stop when a mismatch is found or when reaching the end of any string

    • Return the prefix found so far

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's a general aptitude test with 60 questions in 1hr

Round 2 - Group Discussion 

Gave a topic to discuss

Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string by iterating through the characters and swapping them

    • Create a function that takes a string as input

    • Initialize two pointers, one at the beginning and one at the end of the string

    • Swap the characters at the two pointers and move them towards the center until they meet

  • Answered by AI
  • Q2. Oops topic questions
Round 4 - HR 

(2 Questions)

  • Q1. Problem solving skills
  • Q2. General knowledge questions

Tech Mahindra interview questions for designations

 Senior Software Engineer Testing

 (2)

 Senior Software Engineer 2

 (2)

 Senior Software Development Engineer

 (1)

 Senior Software Quality Engineer

 (1)

 Software Engineer

 (189)

 Senior Software Developer

 (10)

 Senior Software Tester

 (1)

 Senior Software Programmer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the automation framework
  • Q2. Few questions related to Selenium, c#, API testing, Restsharp
Round 2 - HR 

(1 Question)

  • Q1. About the experience and package discussion

Get interview-ready with Top Tech Mahindra Interview Questions

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

I applied via Approached by Company and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I was asked to write a program to reverse a string using Java.

Round 2 - Technical 

(4 Questions)

  • Q1. What are my roles and responsibilities?
  • Ans. 

    As a Senior Software Engineer, your roles and responsibilities include leading development projects, mentoring junior team members, and ensuring high-quality code.

    • Leading development projects from conception to completion

    • Mentoring and providing guidance to junior team members

    • Ensuring the quality of code through code reviews and testing

    • Collaborating with cross-functional teams to deliver software solutions

    • Staying update

  • Answered by AI
  • Q2. Explain about polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in C++.

    • Example of runtime polymorphism: method overriding in Java.

  • Answered by AI
  • Q3. Explain the differences between regression testing and retesting
  • Ans. 

    Regression testing is testing the entire application after changes, while retesting is testing a specific bug fix.

    • Regression testing involves testing the entire application to ensure that new code changes have not negatively impacted existing functionality.

    • Retesting involves testing a specific bug fix to ensure that the issue has been resolved.

    • Regression testing is typically done after every code change, while retestin...

  • Answered by AI
  • Q4. Explain about Pega testing
  • Ans. 

    Pega testing is a software testing process specifically designed for applications built on the Pega platform.

    • Pega testing involves testing the functionality, performance, and security of applications developed using Pega technology.

    • It includes testing various components such as user interfaces, business logic, integrations, and workflows.

    • Test cases are designed to validate the behavior of Pega applications based on bus...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Explain about Automation Framework
  • Ans. 

    Automation framework is a set of guidelines, best practices, tools, and libraries used to automate testing of software applications.

    • Provides structure and guidelines for automated testing

    • Helps in organizing test scripts and test data

    • Supports reusability of code and components

    • Facilitates easy maintenance and scalability

    • Examples: Selenium WebDriver, TestNG, Cucumber

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Jobs at Tech Mahindra

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Sql and pyhton moderate level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Bigquery and airflow architectire
  • Q2. Sql window functions and analytical questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is Can FD and why it is required.
  • Ans. 

    CAN FD stands for Controller Area Network Flexible Data Rate, it is required for high-speed communication in automotive and industrial applications.

    • CAN FD allows for higher data rates compared to traditional CAN networks

    • It is necessary for transmitting large amounts of data quickly and efficiently

    • Used in applications where real-time communication and reliability are crucial, such as automotive ECUs

    • Example: CAN FD is us...

  • Answered by AI
  • Q2. Difference bewtween LKA and LDW.
  • Ans. 

    LKA stands for Lane Keep Assist, while LDW stands for Lane Departure Warning.

    • LKA helps keep the vehicle centered in its lane by providing steering input if necessary.

    • LDW alerts the driver if the vehicle is unintentionally drifting out of its lane.

    • LKA is more proactive in assisting the driver with lane keeping, while LDW is more of a warning system.

    • Some vehicles may have both LKA and LDW features integrated for enhanced

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Aspice model and itr requirement.
  • Ans. 

    ASPICE (Automotive SPICE) model is a framework for software development in the automotive industry. ITR (Integrated Test Requirement) is a part of ASPICE focusing on testing requirements.

    • ASPICE is a framework for software development in the automotive industry

    • ITR is a part of ASPICE that focuses on testing requirements

    • ASPICE helps in ensuring high-quality software development in automotive projects

  • Answered by AI
  • Q2. Writing the Test case for ADAS ECU.
  • Ans. 

    Writing test cases for ADAS ECU involves verifying functionality and performance of the electronic control unit.

    • Identify the input and output requirements of the ADAS ECU

    • Create test cases to cover different scenarios such as normal operation, edge cases, and failure modes

    • Include test cases for communication protocols, sensor inputs, and system responses

    • Verify the integration of ADAS ECU with other components in the sys...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • CAN
  • Ethernet
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Find average of integer arrays using java 8 streams
  • Ans. 

    Calculate average of integer arrays using Java 8 streams

    • Use IntStream to convert the array to a stream of integers

    • Use average() method to calculate the average of the integers

    • Collect the result using getAsDouble() method

  • Answered by AI
  • Q2. What is idempotency
  • Ans. 

    Idempotency is the property of an operation where applying it multiple times has the same effect as applying it once.

    • Idempotency ensures that repeating the same operation multiple times will not change the result.

    • Examples include GET requests in RESTful APIs, where multiple identical requests will return the same response.

    • Idempotency is important in distributed systems to prevent duplicate operations.

    • PUT and DELETE req

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Functions And clsses

Interview Preparation Tips

Interview preparation tips for other job seekers - good work environment

Senior Software Engineer Interview Questions & Answers

user image Pentapati Madhuri

posted on 12 Sep 2024

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

(2 Questions)

  • Q1. Sql basics are asked
  • Q2. Groupby query sybtax

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Senior 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 Resume Shortlist.
How to prepare for Tech Mahindra Senior 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, Spring Boot, SQL and Javascript.
What are the top questions asked in Tech Mahindra Senior Software Engineer interview?

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

  1. How to apply SOLID principle and what is dependency injection and why to use it...read more
  2. In azure data factory how would you implement the functionality of tumbling win...read more
  3. 1)Val a = Array(1,2,1,3,4) Need output as (1,2) (2,1) (1,3) (3...read more
How long is the Tech Mahindra Senior Software Engineer interview process?

The duration of Tech Mahindra Senior 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 Senior Software Engineer Interview Process

based on 125 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
View more
Tech Mahindra Senior Software Engineer Salary
based on 21.4k salaries
₹5.5 L/yr - ₹23 L/yr
12% less than the average Senior Software Engineer Salary in India
View more details

Tech Mahindra Senior Software Engineer Reviews and Ratings

based on 1.8k reviews

3.6/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.1

Salary

3.6

Job security

3.4

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 1.8k Reviews and Ratings
Senior Software Engineer

Mumbai

7-12 Yrs

Not Disclosed

Senior Software Engineer

Mumbai

3-6 Yrs

Not Disclosed

Senior Software Engineer - OM, CPQ

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

₹ 20-35 LPA

Explore more jobs
Software Engineer
26.4k salaries
unlock blur

₹2 L/yr - ₹9.2 L/yr

Senior Software Engineer
21.4k salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Technical Lead
11.7k salaries
unlock blur

₹9.5 L/yr - ₹38 L/yr

Associate Software Engineer
5.5k salaries
unlock blur

₹1.8 L/yr - ₹8.2 L/yr

Team Lead
5k salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.6
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare

Wipro

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