Logo

Get AmbitionBox App

Faster and better experience!

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
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

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 37.5k Reviews

Play video Play video Video summary
  • About
  • Reviews
    37.5k
  • Salaries
    2.7L
  • Interviews
    4k
  • Jobs
    475
  • Benefits
    3.8k
  • Photos
    70
  • Posts
    33

Filter interviews by

Tech Mahindra Software Developer Interview Questions and Answers

Updated 11 Apr 2025

33 Interview questions

A Software Developer was asked 4mo ago
Q. What is OOP in PHP?
Ans. 

OOPs in PHP stands for Object-Oriented Programming, a programming paradigm that uses objects and classes to organize code.

  • OOPs allows for better code organization and reusability

  • Key concepts include classes, objects, inheritance, encapsulation, and polymorphism

  • Example: class Car { public $color; function drive() { echo 'Driving'; }}

A Software Developer was asked 6mo ago
Q. What is the difference between a List and a Tuple?
Ans. 

List is mutable, tuple is immutable in Python.

  • List can be modified after creation, tuple cannot.

  • List uses square brackets [], tuple uses parentheses ().

  • List is slower than tuple for iteration and indexing.

  • Example: list_example = [1, 2, 3], tuple_example = (1, 2, 3)

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
View answers (43)
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
View answers (7)
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
View answers (4)
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
View answers (5)
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
View answers (2)
View All
A Software Developer was asked 6mo ago
Q. How to write a programming language?
Ans. 

To write a programming language as a software developer, one must understand the syntax, semantics, and design principles of programming languages.

  • Understand the syntax and grammar rules of the language.

  • Define the semantics of the language, including how statements and expressions are interpreted.

  • Design the language features and constructs based on the intended use cases.

  • Implement the language using a compiler or ...

A Software Developer was asked 6mo ago
Q. How should I learn to become a software developer?
Ans. 

Learning software development involves studying programming languages, practicing coding, building projects, and staying updated with industry trends.

  • Study programming languages like Java, Python, C++, etc.

  • Practice coding regularly on platforms like LeetCode, HackerRank, etc.

  • Build projects to apply your knowledge and gain practical experience.

  • Stay updated with industry trends by reading blogs, attending workshops,...

What people are saying about Tech Mahindra

View All
frostycheetah
Verified Icon
4d
works at
Tech Mahindra
VPay in TCS
I received an offer from TCS with a variable pay component of ₹2 lakh. I requested a reduction in the variable pay, but the HR declined. They mentioned the maximum Variable Pay Achievement (VPA) I could receive is 75%. Can anyone clarify how much a C3A role employee typically earns as variable pay, and whether this 75% cap is standard? Also what happens if we don't go to the office 5 Days a week.? Is there any deduction in salary.?
Got a question about Tech Mahindra?
Ask anonymously on communities.
A Software Developer was asked 6mo ago
Q. Explain the concepts of OOP.
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

  • OOP focuses on organizing code into objects that interact with each other.

  • Key principles of OOP include encapsulation, inheritance, and polymorphism.

  • Encapsulation involves bundling data and methods that operate on the data into a single unit.

  • Inheritance allows classes to inherit attributes a...

🔥 Asked by recruiter 3 times
A Software Developer was asked 7mo ago
Q. What is a linked list?
Ans. 

A linked list is a data structure that consists of a sequence of elements, where each element points to the next element in the sequence.

  • Consists of nodes where each node contains data and a reference to the next node

  • Can be singly linked (each node points to the next node) or doubly linked (each node points to the next and previous nodes)

  • Allows for efficient insertion and deletion of elements

A Software Developer was asked 9mo ago
Q. How is inheritance used in Kotlin?
Ans. 

Inheritance in Kotlin allows a class to inherit properties and functions from another class.

  • In Kotlin, a class can inherit from another class using the 'open' keyword for the superclass and the 'class' keyword for the subclass.

  • Subclasses can override properties and functions of the superclass using the 'override' keyword.

  • Kotlin does not support multiple inheritance, but a class can implement multiple interfaces.

Are these interview questions helpful?
A Software Developer was asked 9mo ago
Q. Why are coroutines used?
Ans. 

Coroutines are used to perform asynchronous tasks without blocking the main thread.

  • Coroutines allow for efficient asynchronous programming by suspending and resuming execution at specific points.

  • They are commonly used in Android development to handle network requests and database operations.

  • Coroutines can be used to simplify complex asynchronous code by providing a structured way to manage concurrency.

  • They are lig...

🔥 Asked by recruiter 4 times
A Software Developer was asked 11mo ago
Q. Explain the concepts of OOPS.
Ans. 

OOPS Concepts are fundamental principles of Object-Oriented Programming like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

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

  • Abstraction: Hiding the complex implem...

A Software Developer was asked 12mo ago
Q. What is the sequence of delete, truncate, and drop commands?
Ans. 

The sequence of delete, truncate, and drop is in increasing order of data removal and impact on the database.

  • Delete removes specific rows from a table without affecting the table structure. Example: DELETE FROM table_name WHERE condition;

  • Truncate removes all rows from a table, but keeps the table structure intact. Example: TRUNCATE TABLE table_name;

  • Drop removes the entire table along with its structure from the da...

1 2 3 4

Tech Mahindra Software Developer Interview Experiences

99 interviews found

Software Developer Interview Questions & Answers

user image Shafaque Sheikh

posted on 25 Jan 2025

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

(2 Questions)

  • Q1. Different types of streams based questions
  • Add your answer
  • Q2. Collection , competable future, java 8 features
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

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

I appeared for an interview in Jul 2024.

Round 1 - Aptitude Test 

It was easy, had average difficulty . Basic english and aptitude was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of computer fundamentals were asked in this round . OOPS , DBMS , SQL query etc. And 2 coding questions.
  • Add your answer
  • Q2. Another part was pychometric which is very very easy.
  • Add your answer
Round 3 - communication round 

(2 Questions)

  • Q1. Had to listen to audio and gave answer of the questions accordingly.
  • Add your answer
  • Q2. It test your ability of writing , speaking and listening .
  • Add your answer
Round 4 - Technical 

(2 Questions)

  • Q1. Techincal interview was focussed on project .
  • Add your answer
  • Q2. A little bit of easy DSA and basics of CS fundamentals.
  • Add your answer
Round 5 - HR 

(1 Question)

  • Q1. Project and interst
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Annamalai S

posted on 26 Dec 2024

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

(1 Question)

  • Q1. Oops concepts and stream api
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Oops and stream api , spring boot
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 20 Nov 2024

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

(2 Questions)

  • Q1. Difference between List and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is slower than tuple for iteration and indexing.

    • Example: list_example = [1, 2, 3], tuple_example = (1, 2, 3)

  • Answered by AI
    Add your answer
  • Q2. Questions on File handling
  • Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Divyang Vadodariya

posted on 3 Jan 2025

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

(1 Question)

  • Q1. What is opps in php
  • Ans. 

    OOPs in PHP stands for Object-Oriented Programming, a programming paradigm that uses objects and classes to organize code.

    • OOPs allows for better code organization and reusability

    • Key concepts include classes, objects, inheritance, encapsulation, and polymorphism

    • Example: class Car { public $color; function drive() { echo 'Driving'; }}

  • Answered by AI
    Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2024

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

(4 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

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

    • Abstraction hides the implementation d...

  • Answered by AI
    Add your answer
  • Q2. Kotlin multiplatform in existing project
  • Ans. 

    Kotlin multiplatform allows sharing code between different platforms in an existing project.

    • Kotlin multiplatform enables sharing code between iOS and Android platforms

    • It can be integrated into an existing project to reduce duplicate code

    • Supports common libraries and APIs for both platforms

  • Answered by AI
    Add your answer
  • Q3. Use of inheritance in kotlin
  • Ans. 

    Inheritance in Kotlin allows a class to inherit properties and functions from another class.

    • In Kotlin, a class can inherit from another class using the 'open' keyword for the superclass and the 'class' keyword for the subclass.

    • Subclasses can override properties and functions of the superclass using the 'override' keyword.

    • Kotlin does not support multiple inheritance, but a class can implement multiple interfaces.

  • Answered by AI
    Add your answer
  • Q4. Why coroutines is used
  • Ans. 

    Coroutines are used to perform asynchronous tasks without blocking the main thread.

    • Coroutines allow for efficient asynchronous programming by suspending and resuming execution at specific points.

    • They are commonly used in Android development to handle network requests and database operations.

    • Coroutines can be used to simplify complex asynchronous code by providing a structured way to manage concurrency.

    • They are lightwei...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 17 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Introducing your self
  • Add your answer
  • Q2. Communication skills
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Explain react js with ux architecture
  • Ans. 

    React JS is a JavaScript library for building user interfaces, while UX architecture focuses on designing user experiences.

    • React JS is a front-end library used for building interactive user interfaces.

    • UX architecture focuses on designing user experiences to ensure usability and user satisfaction.

    • Combining React JS with UX architecture involves creating intuitive and user-friendly interfaces that prioritize user needs a...

  • Answered by AI
    Add your answer
  • Q2. Create a architecture in using ux
  • Ans. 

    Create a user experience (UX) architecture for software development.

    • Identify user personas and their needs

    • Design user flows and wireframes

    • Implement intuitive navigation and information architecture

    • Ensure consistency in visual design and interactions

    • Test and iterate on the UX design based on user feedback

  • Answered by AI
    Add your answer
Round 3 - Coding Test 

, , , <meta>, <style></p> <!----></div> <!----> <h3 class="mg-top-16 interview-card__tipsHeading"> Interview Preparation Tips </h3> <div data-testid="interview-details-6" class="body-medium interview-card__interview-details"><b class='IS-section-heading'>Topics to prepare for Tech Mahindra Software Developer interview: </b> <ul><li>HTML</li><li>CSS3</li><li>Javascript</li><li>SAAS</li><li>JQuery</li><li>React.Js</li><li>Node.Js</li><li>MongoDB</li><li>C</li><li>Bootstrap</li></ul></div> <div class="mg-top-20"><section class="interviewCardSkillsWrapper"><h3 class="interviewCardSkillsWrapper__heading"> Skills evaluated in this interview </h3> <ul class="interviewCardSkillsWrapper__skillsContainer g-flex-v-center"><button ariaLabel="Web Development" title="Web Development" is-li="true" class="g-chip g-chip--md g-chip--rectangular_hover_ep"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Web Development</span> <!----></button></ul></section></div> <!----> <div class="interview-card__load-more-overlay"><button type="button" ariaLabel="Continue reading" title="Continue reading" class="continueReadingBtn g-btn g-btn--filled g-btn--md g-btn--md--rightIconPadding"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--filled g-btn__label--rightPadding g-btn__label--loader">Continue reading</span> <img src="https://static.ambitionbox.com/static/icons/arrow-down-white.svg" class="g-chip__img g-btn__img--md g-btn__img--md"></button></div></div> <div class="card-action-container g-flex-v-center"><div class="g-flex-hv-center card-action-container__action card-action-container__dualactionbtn"><button title="Upvote" data-testid="dual-action-btn-left" class="dual-action-button dual-action-button__left g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/upvote-blue.svg" loading="lazy" class="dual-action-button__img"> <!----></button> <button title="Downvote" data-testid="dual-action-btn-right" class="dual-action-button dual-action-button__right g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/downvote.svg" loading="lazy" class="dual-action-button__img"> <!----></button></div> <button title="Comment" data-testid="comment-btn" class="card-action-container__action card-action-button g-flex-hv-center card-action-button--"><i class="card-action-button__icon icon-comment"></i> <span class="card-action-button__label">Comment</span></button> <div class="card-action-container__action card-action-container__share-container"><button title="" class="card-action-button g-flex-hv-center card-action-button--"><img src="https://static.ambitionbox.com/static/icons/share-outline.svg" loading="lazy" class="card-action-button__img"> <span class="card-action-button__label">Share</span></button> <!----></div></div> <div><div id="comment-input-4876" class="chat-input"><div class="chat-input__input-cont flex-row"><img src="https://static.ambitionbox.com/static/profile_empty2.svg" width="40" height="40" alt="Anonymous" loading="lazy" class="logo g-logoWrapper g-logoWrapper--round g-logoWrapper--border"> <div class="chat-input__input-box"><textarea rows="1" placeholder="Add a comment..." data-testid="comment-input" class="chat-input__input"></textarea></div></div> <!----> <!----></div> <!----></div></div></div> <!----><div id="interview-11462900" is-comp-interview="true" class="interview-card"><div test-id="interview-header" class="interview-header"><!----> <div class="interview-header__title-wrapper"><h2 class="interview-header__title--h2"><a href="/interviews/tech-mahindra-interview-questions/software-developer" title="Tech Mahindra Software Developer Interview Questions & Answers" class="interview-header__title interview-header__link"> Software Developer Interview Questions & Answers </a></h2> <a href="/interviews/tech-mahindra-interview-questions" title=" interview questions" class="interview-header__sub-title mediumbold-medium interview-header__link"> </a> <span data-testid="interview-subheader" class="interview-subheader__info mediumbold-medium"><img data-src="" src="https://static.ambitionbox.com/static/icons/answered_by_anonymous.png" width="16" height="16" alt="user image" title="Anonymous" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/answered_by_anonymous.png'" class="interview-subheader__user-image lazy"> Anonymous <p class="interview-subheader__postedOnText"> posted on 13 Nov 2024 </p> <!----></span></div> <div class="kebab-menu"><i class="icon-dots-menu kebab-menu__icon"></i> <!----></div></div> <!----> <div><div class="card-insights" data-v-726eaecf><div data-testid="card-insight-0" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Interview experience </div> <div class="card-insights__value card-insights__value--no-margin" data-v-726eaecf><div class="rating_star_container" data-v-726eaecf><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 4<!----></div></div></div> <!----> Good </div></div><div data-testid="card-insight-1" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Difficulty level </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> Moderate </div></div><div data-testid="card-insight-2" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Process Duration </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> Less than 2 weeks </div></div><div data-testid="card-insight-3" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Result </div> <div class="card-insights__value" data-v-726eaecf><!----> <img width="10" height="10" loading="lazy" src="https://static.ambitionbox.com/static/icons/correct-icon.svg" alt="Selected" class="card-insights__img-accepted" data-v-726eaecf> Selected </div></div></div></div> <div class="interview-card__wrapper"><div class="interview-card__content-section interview-card__content-section--shrink interview-card__content-section--stick-card-height" style="--card-height:550px;"><p class="interview-card__interview-date body-medium mg-top-16 interview-card__interview-date--top-marg"> I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds. </p> <div class="interview-card__chips-wrapper noscrollbars-sm mg-top-16 g-flex-wrap"><button ariaLabel="Group Discussion" title="Group Discussion" data-testid="round-chip-70" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Group Discussion</span> <!----></button><button ariaLabel="HR" title="HR" data-testid="round-chip-71" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">HR</span> <!----></button> <!----></div> <div class="roundItem"><div data-testid="round-heading-Group Discussion" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 1 - Group Discussion  </div> <!----></div> <p class="roundItem__details">To introduce myself and my strengths</p> <!----></div><div class="roundItem"><div data-testid="round-heading-HR" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 2 - HR  </div> <h3 class="roundItem__roundNoBox--questionTxt"><span>(</span>3 Questions<span>)</span></h3></div> <!----> <ul><div><li data-testid="" id="interview-10219882" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q1. </span>What is software and how to developing software</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>Software is a set of instructions that tells a computer how to perform specific tasks. Developing software involves designing, coding, testing, and maintaining programs.</p><p></p><ul><li><p>Software is a collection of programs, data, and documentation that performs specific tasks on a computer.</p></li><li><p>Developing software involves analyzing user requirements, designing the software architecture, coding the program, testing for bugs, and maintaining...<button class="roundItem__readMore" id="truncateClamp">read more</button></p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div><div><li data-testid="" id="interview-10219884" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q2. </span>How to a write a programming languages in software developer</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>To write a programming language as a software developer, one must understand the syntax, semantics, and design principles of programming languages.</p><p></p><ul><li><p>Understand the syntax and grammar rules of the language.</p></li><li><p>Define the semantics of the language, including how statements and expressions are interpreted.</p></li><li><p>Design the language features and constructs based on the intended use cases.</p></li><li><p>Implement the language using a compiler or inter...<button class="roundItem__readMore" id="truncateClamp">read more</button></p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div><div><li data-testid="" id="interview-10219886" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q3. </span>How to learning software developer</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>Learning software development involves studying programming languages, practicing coding, building projects, and staying updated with industry trends.</p><p></p><ul><li><p>Study programming languages like Java, Python, C++, etc.</p></li><li><p>Practice coding regularly on platforms like LeetCode, HackerRank, etc.</p></li><li><p>Build projects to apply your knowledge and gain practical experience.</p></li><li><p>Stay updated with industry trends by reading blogs, attending workshops, etc.</p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div></ul></div> <!----> <h3 class="mg-top-16 interview-card__tipsHeading"> Interview Preparation Tips </h3> <div data-testid="interview-details-7" class="body-medium interview-card__interview-details"><b class='IS-section-heading'>Interview preparation tips for other job seekers</b> - im fresher and im a quick fast learner</div> <div class="mg-top-20"><section class="interviewCardSkillsWrapper"><h3 class="interviewCardSkillsWrapper__heading"> Skills evaluated in this interview </h3> <ul class="interviewCardSkillsWrapper__skillsContainer g-flex-v-center"><button ariaLabel="Software Development" title="Software Development" is-li="true" class="g-chip g-chip--md g-chip--rectangular_hover_ep"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Software Development</span> <!----></button></ul></section></div> <!----> <div class="interview-card__load-more-overlay"><button type="button" ariaLabel="Continue reading" title="Continue reading" class="continueReadingBtn g-btn g-btn--filled g-btn--md g-btn--md--rightIconPadding"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--filled g-btn__label--rightPadding g-btn__label--loader">Continue reading</span> <img src="https://static.ambitionbox.com/static/icons/arrow-down-white.svg" class="g-chip__img g-btn__img--md g-btn__img--md"></button></div></div> <div class="card-action-container g-flex-v-center"><div class="g-flex-hv-center card-action-container__action card-action-container__dualactionbtn"><button title="Upvote" data-testid="dual-action-btn-left" class="dual-action-button dual-action-button__left g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/upvote-blue.svg" loading="lazy" class="dual-action-button__img"> <!----></button> <button title="Downvote" data-testid="dual-action-btn-right" class="dual-action-button dual-action-button__right g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/downvote.svg" loading="lazy" class="dual-action-button__img"> <!----></button></div> <button title="Comment" data-testid="comment-btn" class="card-action-container__action card-action-button g-flex-hv-center card-action-button--"><i class="card-action-button__icon icon-comment"></i> <span class="card-action-button__label">Comment</span></button> <div class="card-action-container__action card-action-container__share-container"><button title="" class="card-action-button g-flex-hv-center card-action-button--"><img src="https://static.ambitionbox.com/static/icons/share-outline.svg" loading="lazy" class="card-action-button__img"> <span class="card-action-button__label">Share</span></button> <!----></div></div> <div><div id="comment-input-3400" class="chat-input"><div class="chat-input__input-cont flex-row"><img src="https://static.ambitionbox.com/static/profile_empty2.svg" width="40" height="40" alt="Anonymous" loading="lazy" class="logo g-logoWrapper g-logoWrapper--round g-logoWrapper--border"> <div class="chat-input__input-box"><textarea rows="1" placeholder="Add a comment..." data-testid="comment-input" class="chat-input__input"></textarea></div></div> <!----> <!----></div> <!----></div></div></div> <!----><div id="interview-11798506" is-comp-interview="true" class="interview-card"><div test-id="interview-header" class="interview-header"><!----> <div class="interview-header__title-wrapper"><h2 class="interview-header__title--h2"><a href="/interviews/tech-mahindra-interview-questions/software-developer" title="Tech Mahindra Software Developer Interview Questions & Answers" class="interview-header__title interview-header__link"> Software Developer Interview Questions & Answers </a></h2> <a href="/interviews/tech-mahindra-interview-questions" title=" interview questions" class="interview-header__sub-title mediumbold-medium interview-header__link"> </a> <span data-testid="interview-subheader" class="interview-subheader__info mediumbold-medium"><img data-src="" src="https://static.ambitionbox.com/static/icons/answered_by_anonymous.png" width="16" height="16" alt="user image" title="Anonymous" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/answered_by_anonymous.png'" class="interview-subheader__user-image lazy"> Anonymous <p class="interview-subheader__postedOnText"> posted on 7 Jan 2025 </p> <!----></span></div> <div class="kebab-menu"><i class="icon-dots-menu kebab-menu__icon"></i> <!----></div></div> <!----> <div><div class="card-insights" data-v-726eaecf><div data-testid="card-insight-0" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Interview experience </div> <div class="card-insights__value card-insights__value--no-margin" data-v-726eaecf><div class="rating_star_container" data-v-726eaecf><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#377e01"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 5<!----></div></div></div> <!----> Excellent </div></div><div data-testid="card-insight-1" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Difficulty level </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> - </div></div><div data-testid="card-insight-2" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Process Duration </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> - </div></div><div data-testid="card-insight-3" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Result </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> - </div></div></div></div> <div class="interview-card__wrapper"><div class="interview-card__content-section interview-card__content-section--shrink interview-card__content-section--stick-card-height" style="--card-height:550px;"><!----> <div class="interview-card__chips-wrapper noscrollbars-sm mg-top-16 g-flex-wrap"><button ariaLabel="Aptitude Test" title="Aptitude Test" data-testid="round-chip-80" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Aptitude Test</span> <!----></button><button ariaLabel="Coding Test" title="Coding Test" data-testid="round-chip-81" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Coding Test</span> <!----></button><button ariaLabel="HR" title="HR" data-testid="round-chip-82" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">HR</span> <!----></button> <!----></div> <div class="roundItem"><div data-testid="round-heading-Aptitude Test" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 1 - Aptitude Test  </div> <!----></div> <p class="roundItem__details">Apti, resoning for 2 hrs</p> <!----></div><div class="roundItem"><div data-testid="round-heading-Coding Test" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 2 - Coding Test  </div> <!----></div> <p class="roundItem__details">4 coading questions<br> 2 easy, 2 hard</p> <!----></div><div class="roundItem"><div data-testid="round-heading-HR" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 3 - HR  </div> <h3 class="roundItem__roundNoBox--questionTxt"><span>(</span>1 Question<span>)</span></h3></div> <!----> <ul><div><li data-testid="" id="interview-10700680" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q1. </span>Introduction vision where u see yourself in 5 years</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>In 5 years, I see myself as a senior software developer leading a team of developers on innovative projects.</p><p></p><ul><li><p>Continuing to enhance my technical skills and knowledge through ongoing learning and certifications</p></li><li><p>Taking on more leadership responsibilities and mentoring junior developers</p></li><li><p>Contributing to the success and growth of the company through my expertise and dedication</p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div></ul></div> <!----> <!----> <!----> <!----> <div class="interview-card__load-more-overlay"><button type="button" ariaLabel="Continue reading" title="Continue reading" class="continueReadingBtn g-btn g-btn--filled g-btn--md g-btn--md--rightIconPadding"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--filled g-btn__label--rightPadding g-btn__label--loader">Continue reading</span> <img src="https://static.ambitionbox.com/static/icons/arrow-down-white.svg" class="g-chip__img g-btn__img--md g-btn__img--md"></button></div></div> <div class="card-action-container g-flex-v-center"><div class="g-flex-hv-center card-action-container__action card-action-container__dualactionbtn"><button title="Upvote" data-testid="dual-action-btn-left" class="dual-action-button dual-action-button__left g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/upvote-blue.svg" loading="lazy" class="dual-action-button__img"> <!----></button> <button title="Downvote" data-testid="dual-action-btn-right" class="dual-action-button dual-action-button__right g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/downvote.svg" loading="lazy" class="dual-action-button__img"> <!----></button></div> <button title="Comment" data-testid="comment-btn" class="card-action-container__action card-action-button g-flex-hv-center card-action-button--"><i class="card-action-button__icon icon-comment"></i> <span class="card-action-button__label">Comment</span></button> <div class="card-action-container__action card-action-container__share-container"><button title="" class="card-action-button g-flex-hv-center card-action-button--"><img src="https://static.ambitionbox.com/static/icons/share-outline.svg" loading="lazy" class="card-action-button__img"> <span class="card-action-button__label">Share</span></button> <!----></div></div> <div><div id="comment-input-5533" class="chat-input"><div class="chat-input__input-cont flex-row"><img src="https://static.ambitionbox.com/static/profile_empty2.svg" width="40" height="40" alt="Anonymous" loading="lazy" class="logo g-logoWrapper g-logoWrapper--round g-logoWrapper--border"> <div class="chat-input__input-box"><textarea rows="1" placeholder="Add a comment..." data-testid="comment-input" class="chat-input__input"></textarea></div></div> <!----> <!----></div> <!----></div></div></div> <!----><div id="interview-11374358" is-comp-interview="true" class="interview-card"><div test-id="interview-header" class="interview-header"><!----> <div class="interview-header__title-wrapper"><h2 class="interview-header__title--h2"><a href="/interviews/tech-mahindra-interview-questions/software-developer" title="Tech Mahindra Software Developer Interview Questions & Answers" class="interview-header__title interview-header__link"> Software Developer Interview Questions & Answers </a></h2> <a href="/interviews/tech-mahindra-interview-questions" title=" interview questions" class="interview-header__sub-title mediumbold-medium interview-header__link"> </a> <span data-testid="interview-subheader" class="interview-subheader__info mediumbold-medium"><img data-src="" src="https://static.ambitionbox.com/static/icons/answered_by_anonymous.png" width="16" height="16" alt="user image" title="Anonymous" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/answered_by_anonymous.png'" class="interview-subheader__user-image lazy"> Anonymous <p class="interview-subheader__postedOnText"> posted on 25 Oct 2024 </p> <!----></span></div> <div class="kebab-menu"><i class="icon-dots-menu kebab-menu__icon"></i> <!----></div></div> <!----> <div><div class="card-insights" data-v-726eaecf><div data-testid="card-insight-0" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Interview experience </div> <div class="card-insights__value card-insights__value--no-margin" data-v-726eaecf><div class="rating_star_container" data-v-726eaecf><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#FFBA01"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3<!----></div></div></div> <!----> Average </div></div><div data-testid="card-insight-1" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Difficulty level </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> Moderate </div></div><div data-testid="card-insight-2" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Process Duration </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> 2-4 weeks </div></div><div data-testid="card-insight-3" class="card-insights__card" data-v-726eaecf><div class="card-insights__title" data-v-726eaecf> Result </div> <div class="card-insights__value" data-v-726eaecf><!----> <!----> Not Selected </div></div></div></div> <div class="interview-card__wrapper"><div class="interview-card__content-section interview-card__content-section--shrink interview-card__content-section--stick-card-height" style="--card-height:550px;"><p class="interview-card__interview-date body-medium mg-top-16 interview-card__interview-date--top-marg"> I applied via Company Website and was interviewed in Apr 2024. There were 4 interview rounds. </p> <div class="interview-card__chips-wrapper noscrollbars-sm mg-top-16 g-flex-wrap"><button ariaLabel="Aptitude Test" title="Aptitude Test" data-testid="round-chip-90" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Aptitude Test</span> <!----></button><button ariaLabel="Group Discussion" title="Group Discussion" data-testid="round-chip-91" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Group Discussion</span> <!----></button><button ariaLabel="Technical" title="Technical" data-testid="round-chip-92" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Technical</span> <!----></button><button ariaLabel="HR" title="HR" data-testid="round-chip-93" class="interview-card__chips g-chip g-chip--md g-chip--default"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">HR</span> <!----></button> <!----></div> <div class="roundItem"><div data-testid="round-heading-Aptitude Test" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 1 - Aptitude Test  </div> <!----></div> <p class="roundItem__details">It was a moderate level aptitude test followed with 2 coding questions.</p> <!----></div><div class="roundItem"><div data-testid="round-heading-Group Discussion" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 2 - Group Discussion  </div> <!----></div> <p class="roundItem__details">It was a communication round</p> <!----></div><div class="roundItem"><div data-testid="round-heading-Technical" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 3 - Technical  </div> <h3 class="roundItem__roundNoBox--questionTxt"><span>(</span>2 Questions<span>)</span></h3></div> <!----> <ul><div><li data-testid="" id="interview-10091790" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q1. </span>What is linklist?</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>A linked list is a data structure that consists of a sequence of elements, where each element points to the next element in the sequence.</p><p></p><ul><li><p>Consists of nodes where each node contains data and a reference to the next node</p></li><li><p>Can be singly linked (each node points to the next node) or doubly linked (each node points to the next and previous nodes)</p></li><li><p>Allows for efficient insertion and deletion of elements</p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div><div><li data-testid="" id="interview-10091792" class="roundItem__details--question roundItem__details--questionNoAnswer"><span class="roundItem__details--answerHtmlWrapper"><span>Q2. </span>They asked we 2 DSA easy level ques and 2 SQL queries</span></li> <!----> <!----> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div></ul></div><div class="roundItem"><div data-testid="round-heading-HR" class="roundItem__roundNoBox"><div class="roundItem__roundNoBox--detailTxt"> Round 4 - HR  </div> <h3 class="roundItem__roundNoBox--questionTxt"><span>(</span>2 Questions<span>)</span></h3></div> <!----> <ul><div><li data-testid="" id="interview-10091794" class="roundItem__details--question roundItem__details--questionNoAnswer"><span class="roundItem__details--answerHtmlWrapper"><span>Q1. </span>About my family background</span></li> <!----> <!----> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div><div><li data-testid="" id="interview-10091796" class="roundItem__details--question"><span class="roundItem__details--answerHtmlWrapper"><span>Q2. </span>Are you comfortable with 24/7 rotational shifts?</span></li> <li class="roundItem__details--answer"><span class="roundItem__details--answerHtmlWrapper"><span class='roundItem__details--answerBoldTxt'>Ans. </span><p>Yes, I am comfortable with 24/7 rotational shifts as I understand the importance of round-the-clock support in the software development industry.</p><p></p><ul><li><p>I have previous experience working in rotational shifts and understand the need for flexibility in scheduling.</p></li><li><p>I am willing to adapt my work schedule to accommodate the needs of the team and the project.</p></li><li><p>I am committed to maintaining high productivity and quality of work regardl...<button class="roundItem__readMore" id="truncateClamp">read more</button></p></li></ul></span></li> <div class="roundItem__answeredBy"> Answered by <span class="roundItem__answeredBy--boldTxt">AI</span></div> <div class="roundItem__answerLink"> Add your answer <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="roundItem__answerImg"></div></div></ul></div> <!----> <h3 class="mg-top-16 interview-card__tipsHeading"> Interview Preparation Tips </h3> <div data-testid="interview-details-9" class="body-medium interview-card__interview-details"><b class='IS-section-heading'>Interview preparation tips for other job seekers</b> - Keep in formal dress and show confidence.</div> <div class="mg-top-20"><section class="interviewCardSkillsWrapper"><h3 class="interviewCardSkillsWrapper__heading"> Skills evaluated in this interview </h3> <ul class="interviewCardSkillsWrapper__skillsContainer g-flex-v-center"><button ariaLabel="Data Structures" title="Data Structures" is-li="true" class="g-chip g-chip--md g-chip--rectangular_hover_ep"><!----> <span to="javascript:void(0)" class="g-chip__label g-chip__label--md">Data Structures</span> <!----></button></ul></section></div> <!----> <div class="interview-card__load-more-overlay"><button type="button" ariaLabel="Continue reading" title="Continue reading" class="continueReadingBtn g-btn g-btn--filled g-btn--md g-btn--md--rightIconPadding"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--filled g-btn__label--rightPadding g-btn__label--loader">Continue reading</span> <img src="https://static.ambitionbox.com/static/icons/arrow-down-white.svg" class="g-chip__img g-btn__img--md g-btn__img--md"></button></div></div> <div class="card-action-container g-flex-v-center"><div class="g-flex-hv-center card-action-container__action card-action-container__dualactionbtn"><button title="Upvote" data-testid="dual-action-btn-left" class="dual-action-button dual-action-button__left g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/upvote-blue.svg" loading="lazy" class="dual-action-button__img"> <!----></button> <button title="Downvote" data-testid="dual-action-btn-right" class="dual-action-button dual-action-button__right g-flex-hv-center dual-action-button--"><img src="https://static.ambitionbox.com/static/icons/recentWidgetIcons/downvote.svg" loading="lazy" class="dual-action-button__img"> <!----></button></div> <button title="Comment" data-testid="comment-btn" class="card-action-container__action card-action-button g-flex-hv-center card-action-button--"><i class="card-action-button__icon icon-comment"></i> <span class="card-action-button__label">Comment</span></button> <div class="card-action-container__action card-action-container__share-container"><button title="" class="card-action-button g-flex-hv-center card-action-button--"><img src="https://static.ambitionbox.com/static/icons/share-outline.svg" loading="lazy" class="card-action-button__img"> <span class="card-action-button__label">Share</span></button> <!----></div></div> <div><div id="comment-input-9321" class="chat-input"><div class="chat-input__input-cont flex-row"><img src="https://static.ambitionbox.com/static/profile_empty2.svg" width="40" height="40" alt="Anonymous" loading="lazy" class="logo g-logoWrapper g-logoWrapper--round g-logoWrapper--border"> <div class="chat-input__input-box"><textarea rows="1" placeholder="Add a comment..." data-testid="comment-input" class="chat-input__input"></textarea></div></div> <!----> <!----></div> <!----></div></div></div> <!----></div> <button type="button" ariaLabel="Read all interview experiences" title="Read all interview experiences" class="g-btn g-btn--outline g-btn--md"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--outline g-btn__label--loader">Read all interview experiences</span> <!----></button> <!----> <!----></div></div> <!----> <!----> <!----> <div class="modal-mask" style="display:none;" data-v-31c523f6 data-v-31c523f6><div class="modal-wrapper" data-v-31c523f6><!----></div></div></div> <div id="contribution-widget" class="contribute-widget mg-top-32 no-mg-btm" data-v-70580c38><div class="loader-wrap container-left" data-v-70580c38><div class="loader-card title loader-card-v2" data-v-70580c38></div> <!----></div> <div class="loader-wrap container-left" data-v-70580c38><div class="loader-card loader-card-v2" data-v-70580c38></div> <div class="loader-card loader-card-v2" data-v-70580c38></div> <!----></div> <!----> <!----></div> <div class="ab_card link-widget-wrapper"><a href="/overview/tech-mahindra-overview?campaign=MoreAboutCompanyWidget" tracktrack="" class="link-widget__heading"> More about working at Tech Mahindra <span class="link-widget__cLink"><i class="icon-chevron-right"></i></span></a> <!----> <div class="link-widget"><ul class="link-widget-companyLinksCont chips-block-without-maxWidth"><li class="newHInfo__companyCont"><a href="/overview/tech-mahindra-overview/locations/pune-offices" data-attribute="[object Object]" title="HQ - Pune, Maharashtra, India companies in India" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> HQ - Pune, Maharashtra, India</span> <span class="newHInfo__companyLinkStripe"></span></a></li><li class="newHInfo__companyCont"><a href="/it-services-and-consulting-companies-in-india" data-attribute="[object Object]" title="IT Services & Consulting companies in India" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> IT Services & Consulting</span> <span class="newHInfo__companyLinkStripe"></span></a></li><li class="newHInfo__companyCont"><a href="/list-of-companies?indianEmployeeCounts=100001" data-attribute="[object Object]" title="Companies with 1 Lakh+ Employees (India)" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> 1 Lakh+ Employees (India)</span> <span class="newHInfo__companyLinkStripe"></span></a></li><li class="newHInfo__companyCont"><a href="/public-companies-in-india" data-attribute="[object Object]" title="Public companies in India" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> Public</span> <span class="newHInfo__companyLinkStripe"></span></a></li><li class="newHInfo__companyCont"><a href="/analytics-and-kpo-companies-in-india" data-attribute="[object Object]" title="Analytics & KPO companies in India" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> Analytics & KPO</span> <span class="newHInfo__companyLinkStripe"></span></a></li><li class="newHInfo__companyCont"><a href="/engineering-and-construction-companies-in-india" data-attribute="[object Object]" title="Engineering & Construction companies in India" class="newHInfo__companyCont newHInfo__companyCont--link"><span class="newHInfo__companyLinkText--hover"> Engineering & Construction</span> <!----></a></li></ul></div> <!----></div> <div display-card="true" schema-url="https://www.ambitionbox.com/interviews/tech-mahindra-interview-questions/software-developer" show-schema="true" class="mg-top-32 padding-fix"><div class="ab_section-header-v2 block"><div class="titleCont" style="max-width:100%;"><h2 class="title"> <div>Tech Mahindra Interview FAQs</div> <!----></h2> <!----> <!----> <!----> </div> <!----></div> <div class="container"><div itemscope="itemscope" itemtype="https://schema.org/FAQPage" class="globalCard globalCard--elevated cardCustomPadding"><div itemscope="itemscope" itemprop="mainEntity" itemtype="https://schema.org/Question" class="faq isOpen" style="border-bottom:1px solid #EBF0F6;padding:12px 0px;" data-v-5e01ab52><div class="outersection" data-v-5e01ab52><div itemprop="name" class="question body-medium opened" data-v-5e01ab52>How many rounds are there in Tech Mahindra Software Developer interview?</div></div> <div itemscope="itemscope" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" class="innersection caption-strong-large visible" data-v-5e01ab52><div itemprop="text" data-v-5e01ab52>Tech Mahindra interview process usually has <b>2-3 rounds</b>. The most common rounds in the Tech Mahindra interview process are <b>Technical, Aptitude Test and HR</b>.</div></div></div><div itemscope="itemscope" itemprop="mainEntity" itemtype="https://schema.org/Question" class="faq isOpen" style="border-bottom:1px solid #EBF0F6;padding:12px 0px;" data-v-5e01ab52><div class="outersection" data-v-5e01ab52><div itemprop="name" class="question body-medium opened" data-v-5e01ab52>How to prepare for Tech Mahindra Software Developer interview?</div></div> <div itemscope="itemscope" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" class="innersection caption-strong-large visible" data-v-5e01ab52><div itemprop="text" data-v-5e01ab52>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 <b>Software Development, Java, Hibernate, Spring and Struts</b>.</div></div></div><div itemscope="itemscope" itemprop="mainEntity" itemtype="https://schema.org/Question" class="faq isOpen" style="border-bottom:1px solid #EBF0F6;padding:12px 0px;" data-v-5e01ab52><div class="outersection" data-v-5e01ab52><div itemprop="name" class="question body-medium opened" data-v-5e01ab52>What are the top questions asked in Tech Mahindra Software Developer interview?</div></div> <div itemscope="itemscope" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" class="innersection caption-strong-large visible" data-v-5e01ab52><div itemprop="text" data-v-5e01ab52><p>Some of the top questions asked at the Tech Mahindra Software Developer interview - </p><ol style='margin-left: 25px;'><li style='padding-bottom: 2px;'><span>what is the difference between call by value and call by referen</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=5925329&tag=3077451">read more</a></li><li style='padding-bottom: 2px;'><span>What is the difference b/w confidence and over confiden</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=2570501&tag=498725">read more</a></li><li style='padding-bottom: 2px;'><span>1)What was the introduced in c programming</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=6450255&tag=3944519">read more</a></li></ol></div></div></div><div itemscope="itemscope" itemprop="mainEntity" itemtype="https://schema.org/Question" class="faq isOpen" style="border-bottom:1px solid #EBF0F6;padding:12px 0px;" data-v-5e01ab52><div class="outersection" data-v-5e01ab52><div itemprop="name" class="question body-medium opened" data-v-5e01ab52>What are the most common questions asked in Tech Mahindra Software Developer HR round?</div></div> <div itemscope="itemscope" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" class="innersection caption-strong-large visible" data-v-5e01ab52><div itemprop="text" data-v-5e01ab52><p>The most common HR questions asked in Tech Mahindra Software Developer interview are - </p><ol style='margin-left: 25px;'><li style='padding-bottom: 2px;'><span>What is your family backgrou</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=5044477&tag=2006153">read more</a></li><li style='padding-bottom: 2px;'><span>Where do you see yourself in 5 yea</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=5044477&tag=2006157">read more</a></li><li style='padding-bottom: 2px;'><span>What are your strengths and weakness</span>...<a class="ctas-a-medium" href="/interviews/tech-mahindra-interview-questions?rid=5044477&tag=2006159">read more</a></li></ol></div></div></div><div itemscope="itemscope" itemprop="mainEntity" itemtype="https://schema.org/Question" class="faq isOpen" style="border-bottom:;padding:12px 0px;" data-v-5e01ab52><div class="outersection" data-v-5e01ab52><div itemprop="name" class="question body-medium opened" data-v-5e01ab52>How long is the Tech Mahindra Software Developer interview process?</div></div> <div itemscope="itemscope" itemprop="acceptedAnswer" itemtype="https://schema.org/Answer" class="innersection caption-strong-large visible" data-v-5e01ab52><div itemprop="text" data-v-5e01ab52><p>The duration of Tech Mahindra Software Developer interview process can vary, but typically it takes about <b>less than 2 weeks</b> to complete.</p></div></div></div> <!----></div></div></div> <!----> <div class="userfeedback-snippet"><div class="userfeedback-snippet__container"><div class="userfeedback-snippet__content"><h2 class="userfeedback-snippet__question"> Tell us how to improve this page. </h2> <div class="textarea-input userfeedback-snippet__textarea"><!----> <div class="textarea-input__textarea"><div class="textarea-input__textarea-cont"><textarea type="text" name="" rows="1" autocomplete="on" oninvalid="setCustomValidity(' ')" onchange="setCustomValidity('')" class="textarea-input__textarea-el"></textarea></div> <span class="textarea-input__bar"></span> <label class="textarea-input__label"><span class="textarea-input__slot"></span></label></div> <span class="textarea-input__status"><!----></span> <!----></div> <div class="userfeedback-snippet__ctas"><button type="button" disabled="disabled" ariaLabel="Submit Feedback" title="Submit Feedback" class="userfeedback-snippet__submit g-btn g-btn--filled g-btn--md disabled"><!----> <span class="g-btn__label g-btn__label--md g-btn__label--filled g-btn__label--loader">Submit Feedback</span> <!----></button></div></div></div></div> <div class="ab_card ab_seo_interlinking card mg-btm-24 slimCard"><div class="ab_seo_section"><h2 class="main-title body-medium"> Tech Mahindra Interviews By Designations </h2> <div class="card_links"><ul><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/software-engineer" title="Tech Mahindra Software Engineer Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Software Engineer Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/senior-soft-engineer" title="Tech Mahindra Senior Software Engineer Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Senior Software Engineer Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/customer-service-associate" title="Tech Mahindra Customer Service Associate Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Customer Service Associate Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/associate-software-engineer" title="Tech Mahindra Associate Software Engineer Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Associate Software Engineer Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/customer-support-associate" title="Tech Mahindra Customer Support Associate Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Customer Support Associate Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/customer-service-executive" title="Tech Mahindra Customer Service Executive Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Customer Service Executive Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/customer-care-executive" title="Tech Mahindra Customer Care Executive Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Customer Care Executive Interview Questions </a></li><li class="card_link_item"><a href="/interviews/tech-mahindra-interview-questions/software-developer" aria-current="page" title="Tech Mahindra Software Developer Interview Questions" class="body-small-l seo-sub-title router-link-exact-active router-link-active seo-sub-title--no-dot"> Tech Mahindra Software Developer Interview Questions </a></li> <li><a class="ctas show-more">Show more</a></li> <li class="card_link_item hide"><a href="/interviews/tech-mahindra-interview-questions/customer-support-executive" title="Tech Mahindra Customer Support Executive Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Customer Support Executive Interview Questions </a></li><li class="card_link_item hide"><a href="/interviews/tech-mahindra-interview-questions/technical-lead" title="Tech Mahindra Technical Lead Interview Questions" class="body-small-l seo-sub-title"> Tech Mahindra Technical Lead Interview Questions </a></li></ul></div></div> <!----> <!----> <!----></div></div> <div id="col-right" class="col-right flex-cont"><div id="top-cont" class="top"><div data-testid="interviewInsightCard" class="interviewInsightCard globalCard globalCard--outline"><h2 title="Overall Interview Experience Rating" class="interviewInsightCard__header"> Overall Interview Experience Rating </h2> <div class="interviewInsightCard__sections interviewInsightCard--nopdTp interviewInsightCard--noBrdr"><div><div class="rating_star_container"><svg width="32" height="32" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--lg "><div style="height:auto;padding-bottom:1px;"> 4.1<span style="font-weight: 700; color: #7c7c7c;font-size:20px">/5 </span></div></div></div> <p class="interviewInsightCard__sections--roundSubtitle caption-normal-large"> based on 94 interview experiences </p></div></div> <div class="interviewInsightCard__sections--darkbg interviewInsightCard__shrink"><div class="interviewInsightCard__sections"><p class="interviewInsightCard__title"> Difficulty level </p> <div class="interviewInsightCard__content"><span class="interviewInsightCard__subTitle">Easy</span> <span class="interviewInsightCard__subTitle">35%</span></div><div class="interviewInsightCard__content interviewInsightCard--maxValContent"><span class="interviewInsightCard__subTitle">Moderate</span> <span class="interviewInsightCard__subTitle">63%</span></div><div class="interviewInsightCard__content interviewInsightCard--nomgBtm"><span class="interviewInsightCard__subTitle">Hard</span> <span class="interviewInsightCard__subTitle">3%</span></div></div> <div class="interviewInsightCard__sections interviewInsightCard--noBrdr interviewInsightCard--nopdBtm"><p class="interviewInsightCard__title"> Duration </p> <div class="interviewInsightCard__content interviewInsightCard--maxValContent"><span class="interviewInsightCard__subTitle">Less than 2 weeks</span> <span class="interviewInsightCard__subTitle">72%</span></div><div class="interviewInsightCard__content"><span class="interviewInsightCard__subTitle">2-4 weeks</span> <span class="interviewInsightCard__subTitle">14%</span></div><div class="interviewInsightCard__content"><span class="interviewInsightCard__subTitle">4-6 weeks</span> <span class="interviewInsightCard__subTitle">6%</span></div><div class="interviewInsightCard__content"><span class="interviewInsightCard__subTitle">6-8 weeks</span> <span class="interviewInsightCard__subTitle">6%</span></div><div class="interviewInsightCard__content interviewInsightCard--nomgBtm"><span class="interviewInsightCard__subTitle">More than 8 weeks</span> <span class="interviewInsightCard__subTitle">3%</span></div></div> <div data-testid="interviewInsightCard-viewmore" class="interviewInsightCard__viewMoreWrapper"> View more </div></div> <!----></div> <div id="company-ad-small" class="mg-btm-20 mg-top-20"></div> <div style="margin-bottom:1.25rem;"><div class="skillsInterlinkingWidgetCont"><h3 class="skillsInterlinkingWidgetCont__heading"> Top Skills for Tech Mahindra Software Developer </h3> <div class="skillsInterlinkingWidgetCont__questionCont"><a href="https://www.ambitionbox.com/skills/data-structures-interview-questions" title="Data Structures Interview Questions & Answers" class="skillsInterlinkingWidgetCont__questionCont--questionCard"><div class="skillsInterlinkingWidgetCont__questionCont--question"> Data Structures Interview Questions & Answers </div> <div class="skillsInterlinkingWidgetCont__questionCont--questionLink"> 250 Questions <img src="https://static.ambitionbox.com/static/blue_arrow_right.svg"></div></a><a href="https://www.ambitionbox.com/skills/software-development-interview-questions" title="Software Development Interview Questions & Answers" class="skillsInterlinkingWidgetCont__questionCont--questionCard"><div class="skillsInterlinkingWidgetCont__questionCont--question"> Software Development Interview Questions & Answers </div> <div class="skillsInterlinkingWidgetCont__questionCont--questionLink"> 250 Questions <img src="https://static.ambitionbox.com/static/blue_arrow_right.svg"></div></a><a href="https://www.ambitionbox.com/skills/python-interview-questions" title="Python Interview Questions & Answers" class="skillsInterlinkingWidgetCont__questionCont--questionCard"><div class="skillsInterlinkingWidgetCont__questionCont--question"> Python Interview Questions & Answers </div> <div class="skillsInterlinkingWidgetCont__questionCont--questionLink"> 200 Questions <img src="https://static.ambitionbox.com/static/blue_arrow_right.svg"></div></a><a href="https://www.ambitionbox.com/skills/java-interview-questions" title="Java Interview Questions & Answers" class="skillsInterlinkingWidgetCont__questionCont--questionCard"><div class="skillsInterlinkingWidgetCont__questionCont--question"> Java Interview Questions & Answers </div> <div class="skillsInterlinkingWidgetCont__questionCont--questionLink"> 200 Questions <img src="https://static.ambitionbox.com/static/blue_arrow_right.svg"></div></a></div></div></div> <!----> <div class="ab_card ab_simil-list similar-list mg-btm-20 slimCard"><div class="header LY2aC"><h2 title="Software Developer Interview Questions from Similar Companies" class="title bold-section-header" style="line-height:normal;">Software Developer Interview Questions from Similar Companies </h2> <!----></div> <div title="TCS Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/tcs.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="TCS" class="logo lazy"> <div class="info"><a href="/interviews/tcs-interview-questions" class="title bold-list-header text-capitalize primary-link"> TCS Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.60" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.6<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 519 Interviews </div></div></div></div><div title="Infosys Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/infosys.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Infosys" class="logo lazy"> <div class="info"><a href="/interviews/infosys-interview-questions" class="title bold-list-header text-capitalize primary-link"> Infosys Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.60" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.6<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 266 Interviews </div></div></div></div><div title="Accenture Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/accenture.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Accenture" class="logo lazy"> <div class="info"><a href="/interviews/accenture-interview-questions" class="title bold-list-header text-capitalize primary-link"> Accenture Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.80" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.8<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 245 Interviews </div></div></div></div><div title="Wipro Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/wipro.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Wipro" class="logo lazy"> <div class="info"><a href="/interviews/wipro-interview-questions" class="title bold-list-header text-capitalize primary-link"> Wipro Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.70" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 167 Interviews </div></div></div></div><div title="Capgemini Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/capgemini.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Capgemini" class="logo lazy"> <div class="info"><a href="/interviews/capgemini-interview-questions" class="title bold-list-header text-capitalize primary-link"> Capgemini Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.70" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 162 Interviews </div></div></div></div><div title="Cognizant Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/cognizant.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Cognizant" class="logo lazy"> <div class="info"><a href="/interviews/cognizant-interview-questions" class="title bold-list-header text-capitalize primary-link"> Cognizant Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.70" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 128 Interviews </div></div></div></div><div title="IBM Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/ibm.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="IBM" class="logo lazy"> <div class="info"><a href="/interviews/ibm-interview-questions" class="title bold-list-header text-capitalize primary-link"> IBM Software Developer Interview Questions </a> <div class="rating"><div title="Rating 4.00" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 4.0<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 104 Interviews </div></div></div></div><div title="LTIMindtree Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/ltimindtree.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="LTIMindtree" class="logo lazy"> <div class="info"><a href="/interviews/ltimindtree-interview-questions" class="title bold-list-header text-capitalize primary-link"> LTIMindtree Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.70" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 92 Interviews </div></div></div></div><div title="HCLTech Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/hcl-technologies-88.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="HCLTech" class="logo lazy"> <div class="info"><a href="/interviews/hcl-technologies-interview-questions" class="title bold-list-header text-capitalize primary-link"> HCLTech Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.50" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.5<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 84 Interviews </div></div></div></div><div title="Persistent Systems Software Developer Interviews by employees" data-clickable="company_link" class="ab_similar_company"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/persistent-systems.jpg" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" alt="Persistent Systems" class="logo lazy"> <div class="info"><a href="/interviews/persistent-systems-interview-questions" class="title bold-list-header text-capitalize primary-link"> Persistent Systems Software Developer Interview Questions </a> <div class="rating"><div title="Rating 3.60" class="badge-cont"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.6<!----></div></div></div></div> <div class="desc caption-subdued-medium no-mrg">  • 35 Interviews </div></div></div></div> <a href="https://www.ambitionbox.com/list-of-companies?globalEmployeeCounts=100001&industries=bpo-or-kpo,consulting,analytics-and-kpo,engineering-and-construction,it-services-and-consulting&designation=software-developer" data-clickable="view_all" class="exp-more ctas-a-medium">View all <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="exp-more__arrowImg"></a> <!----></div> <!----> <!----> <!----> <!----> <!----> <div class="shadow-buffer" data-v-04c8ae1a><div title="Tech Mahindra Software Developer Salary" class="ab_card ab_sal-card slimCard mg-btm-20" style="cursor:pointer;" data-v-04c8ae1a><div class="salary-card" data-v-04c8ae1a><a href="https://www.ambitionbox.com/salaries/tech-mahindra-salaries/software-developer" title="Tech Mahindra Software Developer Salary" class="bold-section-header title" data-v-04c8ae1a> Tech Mahindra Software Developer Salary </a> <div class="sub-title" data-v-04c8ae1a> based on 4.3k salaries </div> <div class="salary" data-v-04c8ae1a><span data-v-04c8ae1a><img src="https://static.ambitionbox.com/static/salaries/profile-salary.svg" class="salary__blur" data-v-04c8ae1a> <!----></span> <div class="salary__range body-medium locked" data-v-04c8ae1a> ₹2.1 L/yr - ₹17.6 L/yr </div></div></div> <div class="ab_sal-card__note body-medium" data-v-04c8ae1a><span class="decrease" data-v-04c8ae1a> 7% less </span> than the average Software Developer Salary in India </div> <div class="ab_sal-card__view-more ctas-a-medium" data-v-04c8ae1a> View more details <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="ab_sal-card__arrowImg" data-v-04c8ae1a></div> <!----></div></div> <div id="rating-widget" title="Tech Mahindra Software Developer reviews"><h3><a href="/reviews/tech-mahindra-reviews/software-developer" title="Tech Mahindra Software Developer reviews"> Tech Mahindra Software Developer Reviews and Ratings </a></h3> <p class="subtitle"> based on 381 reviews </p> <div class="rating_star_container rating-badge"><svg width="32" height="32" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--lg "><div style="height:auto;padding-bottom:1px;"> 3.8<span style="font-weight: 700; color: #7c7c7c;font-size:20px">/5 </span></div></div></div> <p class="cat-title">Rating in categories</p> <div class="avg_review_wrap full-card"><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div> <p title="Skill development refers to various training courses, workshops, sessions, etc. provided by Tech Mahindra for their employees." class="rating-category">Skill development</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.8<!----></div></div></div> <p title="Work life balance refers to a balance that an individual needs between time allocated for work and his/her personal life." class="rating-category">Work-life balance</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#FFBA01"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.3<!----></div></div></div> <p title="Salary refer to the compensation along with other monetary and non-monetary benefits Tech Mahindra offers to its employees." class="rating-category">Salary</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.8<!----></div></div></div> <p title="Job security refers to the assurance that the employee will keep his/her current job and not lose it." class="rating-category">Job security</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div> <p title="Company culture refers to the overall environment at Tech Mahindra. It includes working hours, work ethics, company values and mission, management, etc." class="rating-category">Company culture</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#FFBA01"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.1<!----></div></div></div> <p title="Career growth refers to the growth of an employee’s skills, salary, designation, etc. during the course of his/her employment at Tech Mahindra." class="rating-category">Promotions</p></div><div class="avg_review_item"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.6<!----></div></div></div> <p title="Work satisfaction refers to how content an employee feels with the kind of work he/she is doing at Tech Mahindra." class="rating-category">Work satisfaction</p></div></div> <span class="exp-more ctas-a-medium">Explore 381 Reviews and Ratings <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="exp-more__arrowImg"></span></div> <!----> <!----> <!----> <div class="shadow-buffer" data-v-7f4987b4><div title="Tech Mahindra Salaries in India" class="ab_card ab_card-salary mg-btm-20" data-v-7f4987b4><div data-clickable="heading" class="heading LY2aC" data-v-7f4987b4><a title="Tech Mahindra Salaries in India" href="/salaries/tech-mahindra-salaries" class="title bold-section-header">Tech Mahindra Salaries in India </a> <!----></div> <table data-v-7f4987b4><tbody data-v-7f4987b4><tr data-clickable="salary_chip" title="Tech Mahindra Software Engineer SalariesSalaries" data-v-7f4987b4><td class="left-content" data-v-7f4987b4><a href="/salaries/tech-mahindra-salaries/software-engineer" target="_blank" class="left-content__profile primary-link" data-v-7f4987b4> Software Engineer </a> <div class="left-content_datapoints" data-v-7f4987b4> 26.5k salaries </div></td> <td class="right-content" data-v-7f4987b4><div class="right-content__avg" data-v-7f4987b4><span data-v-7f4987b4><img src="https://static.ambitionbox.com/static/salaries/unlock-blur.svg" alt="unlock blur" width="80" height="24" style="vertical-align:middle;" data-v-7f4987b4> <!----></span></div> <p class="right-content__range locked" data-v-7f4987b4> ₹2 L/yr - ₹9.5 L/yr </p></td></tr><tr data-clickable="salary_chip" title="Tech Mahindra Senior Software Engineer SalariesSalaries" data-v-7f4987b4><td class="left-content" data-v-7f4987b4><a href="/salaries/tech-mahindra-salaries/senior-soft-engineer" target="_blank" class="left-content__profile primary-link" data-v-7f4987b4> Senior Software Engineer </a> <div class="left-content_datapoints" data-v-7f4987b4> 21.9k salaries </div></td> <td class="right-content" data-v-7f4987b4><div class="right-content__avg" data-v-7f4987b4><span data-v-7f4987b4><img src="https://static.ambitionbox.com/static/salaries/unlock-blur.svg" alt="unlock blur" width="80" height="24" style="vertical-align:middle;" data-v-7f4987b4> <!----></span></div> <p class="right-content__range locked" data-v-7f4987b4> ₹5.5 L/yr - ₹23 L/yr </p></td></tr><tr data-clickable="salary_chip" title="Tech Mahindra Technical Lead SalariesSalaries" data-v-7f4987b4><td class="left-content" data-v-7f4987b4><a href="/salaries/tech-mahindra-salaries/technical-lead" target="_blank" class="left-content__profile primary-link" data-v-7f4987b4> Technical Lead </a> <div class="left-content_datapoints" data-v-7f4987b4> 12.2k salaries </div></td> <td class="right-content" data-v-7f4987b4><div class="right-content__avg" data-v-7f4987b4><span data-v-7f4987b4><img src="https://static.ambitionbox.com/static/salaries/unlock-blur.svg" alt="unlock blur" width="80" height="24" style="vertical-align:middle;" data-v-7f4987b4> <!----></span></div> <p class="right-content__range locked" data-v-7f4987b4> ₹9.5 L/yr - ₹39 L/yr </p></td></tr><tr data-clickable="salary_chip" title="Tech Mahindra Associate Software Engineer SalariesSalaries" data-v-7f4987b4><td class="left-content" data-v-7f4987b4><a href="/salaries/tech-mahindra-salaries/associate-software-engineer" target="_blank" class="left-content__profile primary-link" data-v-7f4987b4> Associate Software Engineer </a> <div class="left-content_datapoints" data-v-7f4987b4> 5.8k salaries </div></td> <td class="right-content" data-v-7f4987b4><div class="right-content__avg" data-v-7f4987b4><span data-v-7f4987b4><img src="https://static.ambitionbox.com/static/salaries/unlock-blur.svg" alt="unlock blur" width="80" height="24" style="vertical-align:middle;" data-v-7f4987b4> <!----></span></div> <p class="right-content__range locked" data-v-7f4987b4> ₹1.9 L/yr - ₹5.6 L/yr </p></td></tr><tr data-clickable="salary_chip" title="Tech Mahindra Team Lead SalariesSalaries" data-v-7f4987b4><td class="left-content" data-v-7f4987b4><a href="/salaries/tech-mahindra-salaries/team-lead" target="_blank" class="left-content__profile primary-link" data-v-7f4987b4> Team Lead </a> <div class="left-content_datapoints" data-v-7f4987b4> 5.2k salaries </div></td> <td class="right-content" data-v-7f4987b4><div class="right-content__avg" data-v-7f4987b4><span data-v-7f4987b4><img src="https://static.ambitionbox.com/static/salaries/unlock-blur.svg" alt="unlock blur" width="80" height="24" style="vertical-align:middle;" data-v-7f4987b4> <!----></span></div> <p class="right-content__range locked" data-v-7f4987b4> ₹5.5 L/yr - ₹18 L/yr </p></td></tr></tbody></table> <a href="/salaries/tech-mahindra-salaries" target="_blank" class="exp-more ctas-a-medium" data-v-7f4987b4> Explore more salaries <img width="14" height="14" src="https://static.ambitionbox.com/static/blue_arrow_right.svg" class="exp-more__arrowImg" data-v-7f4987b4></a> <!----></div></div> <!----> <!----> <!----> <div class="ab_compare-list mg-btm-20"><div class="container"><div class="comparisions-list"><div class="flex-center comparisions-list__header"><div title="Compare Tech Mahindra with" class="comparisions-list__title"> Compare Tech Mahindra with </div> <div class="comparisions-list__actions flex-center"><div class="left flex-center action-button"><i class="icon-chevron-right action-button__prev disabled"></i></div> <div class="right flex-center action-button"><i class="icon-chevron-right"></i></div></div></div> <div class="comparisions-list__list"><div class="comparison-card globalCard globalCard--outline"><div class="comparison-card__img"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/infosys.jpg" height="50" width="100" alt="Infosys" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" class="logo lazy"></div> <div class="comparison-card__details"><p class="comparison-card__title">Infosys</p> <div class="comparison-card__rating"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.6<!----></div></div></div></div></div> <div data-clickable="company_link" class="comparison-card__cta"> Compare </div> <!----></div><div class="comparison-card globalCard globalCard--outline"><div class="comparison-card__img"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/cognizant.jpg" height="50" width="100" alt="Cognizant" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" class="logo lazy"></div> <div class="comparison-card__details"><p class="comparison-card__title">Cognizant</p> <div class="comparison-card__rating"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div></div> <div data-clickable="company_link" class="comparison-card__cta"> Compare </div> <!----></div><div class="comparison-card globalCard globalCard--outline"><div class="comparison-card__img"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/accenture.jpg" height="50" width="100" alt="Accenture" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" class="logo lazy"></div> <div class="comparison-card__details"><p class="comparison-card__title">Accenture</p> <div class="comparison-card__rating"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.8<!----></div></div></div></div></div> <div data-clickable="company_link" class="comparison-card__cta"> Compare </div> <!----></div><div class="comparison-card globalCard globalCard--outline"><div class="comparison-card__img"><img data-src="https://static.ambitionbox.com/alpha/company/photos/logos/wipro.jpg" height="50" width="100" alt="Wipro" src="https://static.ambitionbox.com/static/icons/company-placeholder.svg" onerror="this.onerror=null;this.src='https://static.ambitionbox.com/static/icons/company-placeholder.svg'" class="logo lazy"></div> <div class="comparison-card__details"><p class="comparison-card__title">Wipro</p> <div class="comparison-card__rating"><div class="rating_star_container"><svg width="16" height="16" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" rx="4" fill="#9acd32"></rect> <path d="M6.295 16L7.27 11.5632L4 8.57895L8.32 8.18421L10 4L11.68 8.18421L16 8.57895L12.73 11.5632L13.705 16L10 13.6474L6.295 16Z" fill="white"></path></svg> <div class="rating_text rating_text--sm "><div style="height:auto;padding-bottom:1px;"> 3.7<!----></div></div></div></div></div> <div data-clickable="company_link" class="comparison-card__cta"> Compare </div> <!----></div></div></div></div></div> <!----> <div class="popular-tools-container mg-btm-20"><div class="popular-tools-container__title">Popular Calculators</div> <div class="popular-tools-container__tools-list"><a href="https://www.ambitionbox.com/are-you-paid-fairly" data-testid="popular_tool_areYouPaid" class="popular-tool-card"><div class="popular-tool-card__tool-image" style="left:14px;top:10px;width:44px;height:44px;"><img src="https://static.ambitionbox.com/static/calculators/coin-rupee.png" width="100%" height="100%"></div> <span class="popular-tool-card__tool-title">Are you paid fairly?</span> <img src="https://static.ambitionbox.com/static/calculators/chevron-right-blue.png" width="24" height="24" class="popular-tool-card__ml-auto"></a><a href="https://www.ambitionbox.com/salaries/take-home-salary-calculator" data-testid="popular_tool_inHandSalary" class="popular-tool-card mt-16"><div class="popular-tool-card__tool-image" style="left:11px;top:9px;width:40px;height:60px;"><img src="https://static.ambitionbox.com/static/calculators/salary.png" width="100%" height="100%"></div> <span class="popular-tool-card__tool-title">Monthly In-hand Salary Calculator</span> <img src="https://static.ambitionbox.com/static/calculators/chevron-right-blue.png" width="24" height="24" class="popular-tool-card__ml-auto"></a><a href="https://www.ambitionbox.com/salaries/gratuity-calculator" data-testid="popular_tool_gratuity" class="popular-tool-card mt-16"><div class="popular-tool-card__tool-image" style="left:11px;top:11px;width:41.07px;height:41.07px;"><img src="https://static.ambitionbox.com/static/calculators/gratuity.png" width="100%" height="100%"></div> <span class="popular-tool-card__tool-title">Gratuity Calculator</span> <img src="https://static.ambitionbox.com/static/calculators/chevron-right-blue.png" width="24" height="24" class="popular-tool-card__ml-auto"></a><a href="https://www.ambitionbox.com/salaries/hra-calculator" data-testid="popular_tool_hra" class="popular-tool-card mt-16"><div class="popular-tool-card__tool-image" style="left:10px;top:10px;width:49px;height:44px;"><img src="https://static.ambitionbox.com/static/calculators/hra.png" width="100%" height="100%"></div> <span class="popular-tool-card__tool-title">HRA Calculator</span> <img src="https://static.ambitionbox.com/static/calculators/chevron-right-blue.png" width="24" height="24" class="popular-tool-card__ml-auto"></a><a href="https://www.ambitionbox.com/salaries/salary-hike-calculator" data-testid="popular_tool_salaryHike" class="popular-tool-card mt-16"><div class="popular-tool-card__tool-image" style="left:6px;top:3px;width:58px;height:58px;"><img src="https://static.ambitionbox.com/static/calculators/coin-growth.png" width="100%" height="100%"></div> <span class="popular-tool-card__tool-title">Salary Hike Calculator</span> <img src="https://static.ambitionbox.com/static/calculators/chevron-right-blue.png" width="24" height="24" class="popular-tool-card__ml-auto"></a></div></div> <!----> <div id="company-ad-small-1" class="mg-btm-24 company-ad-small"></div> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <!----></div></div></div> <div class="container mg-top-20"><div class="breadCrumbContainerReview"><div class="breadCrumbBase"><ul class="titleWrapper"><li class="titleUnset"><a href="https://www.ambitionbox.com"><span class="underlineText"> Home </span> <span class="strip"> > </span></a></li><li class="titleUnset"><a href="https://www.ambitionbox.com/interviews"><span class="underlineText"> Interviews </span> <span class="strip"> > </span></a></li><li class="titleUnset"><a href="https://www.ambitionbox.com/interviews/tech-mahindra-interview-questions"><span class="underlineText"> Tech Mahindra Interview Questions </span> <span class="strip"> > </span></a></li><li class="titleUnset"><span href="https://www.ambitionbox.com/interviews/tech-mahindra-interview-questions/software-developer"><span> Tech Mahindra Software Developer Interview Questions </span></span></li></ul></div></div></div> <!----> <!----> <!----> <!----> <!----> <!----> <!----> <div class="modal-mask" style="display:none;" data-v-31c523f6 data-v-31c523f6><div class="modal-wrapper" data-v-31c523f6><!----></div></div> <!----> <div class="right_sticky_section"><div class="floating_container"><div class="fab-btn" style="width:210px;"><img src="https://static.ambitionbox.com/static/feedback_write.svg" width="16" height="16" alt="write" class="fab-btn__img"> <div class="fab-btn__ctaText"> Share an Interview </div></div> <!----></div></div></div></div> <!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----> <div id="loaderCommon" class="loader-hidden" data-v-93afacc6><div class="spinnerCnt" data-v-93afacc6><div class="loader"></div></div></div> <div id="section-user-feedback-widget" data-v-93afacc6></div> <!----> <!----> <footer id="ab-footer" style="margin-bottom:;" data-v-93afacc6 data-v-93afacc6><div class="app-prom-banner g-flex-hv-center"><div class="app-prom-banner__description g-flex-col"><div class="app-prom-banner__title"> Stay ahead in your career.<!----> Get AmbitionBox app </div> <div class="app-prom-banner__store"><a href="https://play.google.com/store/apps/details?id=com.ambitionbox.android&utm_source=ambitionbox&utm_medium=desktop&utm_campaign=footer_app_promotion_banner_playstore_companyInterviews" target="_blank" title="AmbitionBox App" class="app-prom-banner__link g-flex-v-center"><img src="https://static.ambitionbox.com/static/app-play-icon.png" loading="lazy" width="149" height="44"></a> <a href="https://apps.apple.com/in/app/ambitionbox-salary-reviews/id6504849582" target="_blank" title="AmbitionBox App" class="app-prom-banner__link g-flex-v-center"><img src="https://static.ambitionbox.com/static/ios-medium.png" loading="lazy" width="149" height="44"></a></div></div> <a href="https://static.ambitionbox.com/static/app-redirect.html" target="_blank" title="AmbitionBox App" class="app-prom-banner__qr g-flex-hv-center"><img src="https://static.ambitionbox.com/static/website-app-qr.png" loading="lazy" width="96" height="96"></a></div> <div class="container"><div class="contentCtaWrapper"><div class="info left-col logoContentWrapper"><div class="footer_awards_section"><div class="awards_banner"><img src="https://static.ambitionbox.com/static/awards/awards_footer_badge.svg" loading="lazy" alt="Awards Banner"></div> <div class="footer_stats"><p class="title semibold caption"> Helping over 1 Crore job seekers every month in choosing their right fit company </p> <div class="col"><div class="item"><span class="bold-title text-font-16">80 Lakh+</span> <p class="semibold body-small-important"> Reviews </p></div><div class="item"><span class="bold-title text-font-16">4 Crore+</span> <p class="semibold body-small-important"> Salaries </p></div><div class="item"><span class="bold-title text-font-16">6 Lakh+</span> <p class="semibold body-small-important"> Interviews </p></div><div class="item"><span class="bold-title text-font-16">1 Crore+</span> <p class="semibold body-small-important"> Users/Month </p></div></div></div></div></div> <div class="right-col"><div class="col"><span class="item bold-title contriText">Contribute</span> <button class="ab_btn btn invert"><span class="ctas-btn-medium">Write a Review</span></button> <button class="ab_btn btn invert"><span class="ctas-btn-medium">Add a Salary</span></button> <button class="ab_btn btn invert"><span class="ctas-btn-medium">Share an Interview</span></button> <button class="ab_btn btn invert"><span class="ctas-btn-medium">Add Office Photos</span></button> <button class="ab_btn btn invert"><span class="ctas-btn-medium">Add Company Benefits</span></button></div></div></div> <div type-id="footer-typeahead" default-drop-down-option="2" id="footer-typeahead" class="ab_typeahead4 container"><!----> <!----> <div class="typeahead-wrapper3 float-search typeahead-wrapper3-padding search-button"><div class="wrapper"><div class="search-company"><img src="https://static.ambitionbox.com/static/icons/search.svg" height="16" width="16" class="search-icon"> <div class="input-animation"><div class="placeholderAnimateer" style="color:;"> Search <div class="placeholder-wrapper" style="margin-bottom:0;"><!----></div></div></div> <div class="input-div"><div id="autosuggest" title="Enter a Company or Designation" class="ab-typeahead"><div role="combobox" aria-expanded="false" aria-haspopup="listbox" aria-owns="autosuggest-ab-typeahead__results"><input type="search" autocomplete="off" aria-autocomplete="list" aria-activedescendant="" aria-controls="autosuggest-ab-typeahead__results" name="companyName" id="footer-typeahead" maxLength="150" placeholder="Search on AmbitionBox" selectedTag="" value="" class="component-input"></div> <div id="autosuggest-ab-typeahead__results" class="ab-typeahead__menu"><!----> </div></div></div></div> <div class="dropdown"><div class="wrapper-dropdown" data-v-f59c163e><div class="input-box" data-v-f59c163e><p data-v-f59c163e>Interview Questions</p> <i class="icon-chevron-right" data-v-f59c163e></i></div> <ul class="autocomplete-list" data-v-f59c163e><li rel="CompanyReviews" data-v-f59c163e> Reviews </li><li rel="CompanySalaries" data-v-f59c163e> Salaries </li><li rel="InterviewQuestions" class="active" data-v-f59c163e> Interview Questions </li><li rel="CompanyOverview" data-v-f59c163e> About Company </li><li rel="CompanyBenefits" data-v-f59c163e> Benefits </li><li rel="CompanyJobs" data-v-f59c163e> Jobs </li><li rel="CompanyPhotos" data-v-f59c163e> Office Photos </li><li rel="CompanyPosts" data-v-f59c163e> Community </li></ul></div></div></div></div></div> <div class="footer-nav-section"><div class="left-col width-100"><!----> <!----> <div class="col min-width-16"><span class="item bold-title text-font-16">Users/Jobseekers</span> <ul><li><a href="/list-of-companies" class="item body-small-important">Companies</a></li> <li><a href="/reviews" class="item body-small-important">Reviews</a></li> <li><a href="/salaries" class="item body-small-important">Salaries</a></li> <li><a href="/jobs" class="item body-small-important"> Jobs </a></li> <li><a href="/interviews" rel="noreferrer" class="item body-small-important router-link-active">Interviews</a></li> <!----> <li><a href="https://www.ambitionbox.com/salaries/take-home-salary-calculator" class="item body-small-important"> Salary Calculator </a></li> <li><a href="/topics/aptitude/questions-and-answers" rel="noreferrer" class="item body-small-important">Practice Test</a></li> <li><a href="/compare" class="item body-small-important"> Compare Companies </a></li></ul></div> <div class="col min-width-18-6"><span class="item bold-title text-font-16">Employers</span> <ul><li><a href="https://employer.ambitionbox.com?utm_source=ambitionbox&utm_medium=footer&utm_campaign=create-new-company" target="_blank" rel="noreferrer" class="item body-small-important">Create a new company</a></li> <li><a href="https://employer.ambitionbox.com/company-page?utm_source=ambitionbox&utm_medium=footer&utm_campaign=update-company-infomation" target="_blank" rel="noreferrer" class="item body-small-important">Update company information</a></li> <li><a href="https://employer.ambitionbox.com/review-management?utm_source=ambitionbox&utm_medium=footer&utm_campaign=respond-to-reviews" target="_blank" rel="noreferrer" class="item body-small-important">Respond to reviews</a></li> <li><a href="/employer/sendemail" target="_blank" rel="noreferrer" class="item body-small-important">Invite employees to review</a></li> <li><a href="https://www.ambitionbox.com/alpha/company/photos/employer/AmbitionBox_Offering_For_Employers.pdf" download="AmbitionBox_Offering_For_Employers" class="item body-small-important download_link"> AmbitionBox Offering for Employers </a></li> <li><a href="https://www.ambitionbox.com/alpha/company/photos/employer/AmbitionBox_Offering_For_Employers_Brochure.pdf" download="AmbitionBox_Offering_For_Employers_Brochure" class="item body-small-important download_link"> AmbitionBox Employers Brochure </a></li></ul></div> <div class="col min-width-31"><span class="item bold-title text-font-16">AmbitionBox Awards</span> <ul><li><a href="/abeca-2026" class="item body-small-important awards"> ABECA 2026 </a></li> <li><a href="/abeca-2025" class="item body-small-important awards"> ABECA 2025 <img src="https://static.ambitionbox.com/static/awards/awards24/InfoTag.svg" loading="lazy" width="100" height="18" alt="winners awaited tag"></a></li> <li><a href="/abeca-2024" class="item body-small-important awards"> ABECA 2024 </a></li> <li><a href="/awards/best-places-to-work-in-india-2022" class="item body-small-important"> AmbitionBox Best Places to Work 2022 </a></li> <li><a href="/best-places-to-work-in-india-2021" rel="noreferrer" class="item body-small-important">AmbitionBox Best Places to Work 2021</a></li> <li><a href="/employer/awards2026/sendemail" target="_blank" rel="noreferrer" class="body-text-large body-small-important">Invite employees to rate</a></li></ul></div> <div class="col min-width-15"><span class="item bold-title text-font-16">AmbitionBox</span> <ul><li><a href="/about-us" rel="noreferrer" class="item body-small-important">About Us</a></li> <li><a href="mailto:support@ambitionbox.com?Subject=Query" target="_blank" rel="noreferrer" class="body-text-large body-small-important">Email Us</a></li> <li><a href="/unboxed" target="_blank" rel="noreferrer" class="item body-small-important">Blog</a></li> <li><a href="/faq" target="_blank" rel="noreferrer" class="item body-small-important">FAQ</a></li> <li><a href="/credits" target="_blank" rel="noreferrer" class="item body-small-important">Credits</a></li> <li class="item body-small-important"><span class="footer-link"> Give Feedback </span></li></ul></div> <div class="col"><span class="item bold-title text-font-16">Terms & Policies</span> <ul><li class="item body-small-important"><a href="/legal/privacy-policy" target="_blank" rel="noreferrer" class="item">Privacy</a></li><li class="item body-small-important"><a href="/legal/grievances" target="_blank" rel="noreferrer" class="item">Grievances</a></li><li class="item body-small-important"><a href="/legal/terms-of-use" target="_blank" rel="noreferrer" class="item">Terms of Use</a></li><li class="item body-small-important"><a href="/legal/summons-notice-form" target="_blank" rel="noreferrer" class="item">Summons/Notices</a></li><li class="item body-small-important"><a href="/legal/community-guidelines" target="_blank" rel="noreferrer" class="item">Community Guidelines</a></li></ul> <div class="app-prom-footer g-flex-col"><div class="app-prom-footer__title"> Get AmbitionBox app </div> <a href="https://play.google.com/store/apps/details?id=com.ambitionbox.android&utm_source=ambitionbox&utm_medium=desktop&utm_campaign=footer_app_promotion_banner_small_companyInterviews" target="_blank" title="AmbitionBox App" class="app-prom-footer__link"><img src="https://static.ambitionbox.com/static/app-play-icon.png" width="121" loading="lazy" height="36"></a> <a href="https://apps.apple.com/in/app/ambitionbox-salary-reviews/id6504849582" target="_blank" title="AmbitionBox App" class="app-prom-footer__link"><img src="https://static.ambitionbox.com/static/ios-medium.png" width="121" loading="lazy" height="36"></a></div></div> <!----> <!----></div></div></div> <!----> <!----> <div class="copyright-container container"><p class="footerBottomText body-large"> Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd. </p> <div class="socialLinkContainer"><span class="item bold-title followUsText">Follow Us</span> <ul class="social"><li><a target="_blank" rel="nofollow noopener" href="https://bit.ly/3NiaWEQ"><img id="Youtube" loading="lazy" width="24" height="24" data-src="https://static.ambitionbox.com/static/icons/social/youtube-logo.svg" alt="Youtube" class="lazy"></a></li><li><a target="_blank" rel="nofollow noopener" href="https://bit.ly/3OGrqHZ"><img id="Instagram" loading="lazy" width="24" height="24" data-src="https://static.ambitionbox.com/static/icons/social/instagram-logo.svg" alt="Instagram" class="lazy"></a></li><li><a target="_blank" rel="nofollow noopener" href="https://bit.ly/3bw5Pnm"><img id="LinkedIn" loading="lazy" width="24" height="24" data-src="https://static.ambitionbox.com/static/icons/social/linkedin-logo.svg" alt="LinkedIn" class="lazy"></a></li><li><a target="_blank" rel="nofollow noopener" href="https://bit.ly/3A8gP4y"><img id="Facebook" loading="lazy" width="24" height="24" data-src="https://static.ambitionbox.com/static/icons/social/fb-logo.svg" alt="Facebook" class="lazy"></a></li><li><a target="_blank" rel="nofollow noopener" href="https://bit.ly/3No1Ne1"><img id="Twitter" loading="lazy" width="24" height="24" data-src="https://static.ambitionbox.com/static/icons/social/twitter-logo.svg" alt="Twitter" class="lazy"></a></li></ul></div></div> <!----></footer> <!----> <!----> <!----> <!----></div></div></div><script>window.__NUXT__=(function(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,_,$,aa,ab,ac,ad,ae,af,ag,ah,ai,aj,ak,al,am,an,ao,ap,aq,ar,as,at,au,av,aw,ax,ay,az,aA,aB,aC,aD,aE,aF,aG,aH,aI,aJ,aK,aL,aM,aN,aO,aP,aQ,aR,aS,aT,aU,aV,aW,aX,aY,aZ,a_,a$,ba,bb,bc,bd,be,bf,bg,bh,bi,bj,bk,bl,bm,bn,bo,bp,bq,br,bs,bt,bu,bv,bw,bx,by,bz,bA,bB,bC,bD,bE,bF,bG,bH,bI,bJ,bK,bL,bM,bN,bO,bP,bQ,bR,bS,bT,bU,bV,bW,bX,bY,bZ,b_,b$,ca,cb,cc,cd,ce,cf,cg,ch,ci,cj,ck,cl,cm,cn,co,cp,cq,cr,cs,ct,cu,cv,cw,cx,cy,cz,cA,cB,cC,cD,cE,cF,cG,cH,cI,cJ,cK,cL,cM,cN,cO,cP,cQ,cR,cS,cT,cU,cV,cW,cX,cY,cZ,c_,c$,da,db,dc,dd,de,df,dg,dh,di,dj,dk,dl,dm,dn,do0,dp,dq,dr,ds,dt,du,dv,dw,dx,dy,dz,dA,dB,dC,dD,dE,dF,dG,dH,dI,dJ){cl.data=[];cl.meta={after:a,before:a,total:b,totalRootLevel:b};cp.data=[];cp.meta={after:a,before:a,total:b,totalRootLevel:b};cq.data=[];cq.meta={after:a,before:a,total:b,totalRootLevel:b};ct.data=[];ct.meta={after:a,before:a,total:b,totalRootLevel:b};cx.data=[];cx.meta={after:a,before:a,total:b,totalRootLevel:b};cE.data=[];cE.meta={after:a,before:a,total:b,totalRootLevel:b};cF.data=[];cF.meta={after:a,before:a,total:b,totalRootLevel:b};cL.data=[];cL.meta={after:a,before:a,total:b,totalRootLevel:b};cM.data=[];cM.meta={after:a,before:a,total:b,totalRootLevel:b};cQ.data=[];cQ.meta={after:a,before:a,total:b,totalRootLevel:b};cU[0]={count:197,id:"3",urlName:bW,name:bV};cU[1]={count:158,id:"1981",urlName:bZ,name:bY};cU[2]={count:135,id:"267",urlName:"customer-service-associate",name:"Customer Service Associate"};cU[3]={count:126,id:"10",urlName:cb,name:ca};cU[4]={count:124,id:"4695",urlName:"customer-support-associate",name:"Customer Support Associate"};cU[5]={count:120,id:"439",urlName:"customer-service-executive",name:"Customer Service Executive"};cU[6]={count:cV,id:"2456",urlName:"customer-care-executive",name:"Customer Care Executive"};cU[7]={count:aH,id:"4",urlName:i,name:h};cU[8]={count:cW,id:"1842",urlName:"customer-support-executive",name:"Customer Support Executive"};cU[9]={count:78,id:"24",urlName:b$,name:b_};return {layout:"headerLayout",data:[{alsoViewedCompanies:{state:M,title:"Software Developer Interview Questions from Similar Companies",designation:{name:h,urlName:i},companies:[{urlName:U,industry:"Financial Services, Internet, Education & Training, BPO, IT Services & Consulting",companyId:aQ,rating:al,logo:U,shortName:am,interviewsCount:519},{urlName:G,industry:aR,companyId:aS,rating:al,logo:G,shortName:V,interviewsCount:266},{urlName:W,industry:"Analytics & KPO, IT Services & Consulting, Software Product, Management Consulting",companyId:aT,rating:"3.8",logo:W,shortName:an,interviewsCount:245},{urlName:X,industry:"Advertising \u002F PR \u002F Events, Consulting, Healthcare \u002F Pharma, BPO, IT Services & Consulting",companyId:aU,rating:Y,logo:X,shortName:ao,interviewsCount:167},{urlName:Z,industry:"Internet, Analytics & KPO, IT Services & Consulting, Software Product",companyId:aV,rating:Y,logo:Z,shortName:ap,interviewsCount:162},{urlName:x,industry:aR,companyId:aq,rating:Y,logo:x,shortName:N,interviewsCount:128},{urlName:_,industry:"Financial Services, Emerging Technologies, IT Services & Consulting",companyId:aW,rating:"4.0",logo:_,shortName:ar,interviewsCount:104},{urlName:$,industry:"BPO\u002FKPO, IT Services & Consulting",companyId:aX,rating:Y,logo:$,shortName:as,interviewsCount:92},{urlName:aY,industry:"Telecom, Education & Training, Hardware & Networking, Banking, Emerging Technologies, IT Services & Consulting, Software Product",companyId:aZ,rating:"3.5",logo:a_,shortName:a$,interviewsCount:84},{urlName:aa,industry:"Telecom, FinTech, Healthcare, Emerging Technologies, IT Services & Consulting, Software Product",companyId:ba,rating:al,logo:aa,shortName:at,interviewsCount:au}]},popularComparisons:{data:[{CompanyId:aS,CompanyName:V,SearchVolume:av,ShortName:V,UrlName:G,Logo:G,Rating:H,ReviewCount:42121},{CompanyId:aq,CompanyName:N,SearchVolume:av,ShortName:N,UrlName:x,Logo:x,Rating:r,ReviewCount:53514},{CompanyId:aT,CompanyName:an,SearchVolume:bb,ShortName:an,UrlName:W,Logo:W,Rating:y,ReviewCount:61732},{CompanyId:aU,CompanyName:ao,SearchVolume:bb,ShortName:ao,UrlName:X,Logo:X,Rating:r,ReviewCount:56341},{CompanyId:aQ,CompanyName:am,SearchVolume:bc,ShortName:am,UrlName:U,Logo:U,Rating:H,ReviewCount:96150},{CompanyId:aW,CompanyName:ar,SearchVolume:aw,ShortName:ar,UrlName:_,Logo:_,Rating:g,ReviewCount:23215},{CompanyId:aV,CompanyName:ap,SearchVolume:bd,ShortName:ap,UrlName:Z,Logo:Z,Rating:r,ReviewCount:45168},{CompanyId:77,CompanyName:be,SearchVolume:z,ShortName:be,UrlName:bf,Logo:bf,Rating:4.4,ReviewCount:1727},{CompanyId:aZ,CompanyName:"HCL Technologies",SearchVolume:z,ShortName:a$,UrlName:aY,Logo:a_,Rating:O,ReviewCount:38801},{CompanyId:298,CompanyName:bg,SearchVolume:b,ShortName:bg,UrlName:bh,Logo:bh,Rating:y,ReviewCount:34934},{CompanyId:aX,CompanyName:as,SearchVolume:b,ShortName:as,UrlName:$,Logo:$,Rating:r,ReviewCount:22338},{CompanyId:156031,CompanyName:bi,SearchVolume:b,ShortName:bi,UrlName:bj,Logo:bj,Rating:r,ReviewCount:10611},{CompanyId:579,CompanyName:bk,SearchVolume:b,ShortName:bk,UrlName:bl,Logo:bl,Rating:P,ReviewCount:8917},{CompanyId:329260,CompanyName:bm,SearchVolume:b,ShortName:bm,UrlName:bn,Logo:bn,Rating:H,ReviewCount:5749},{CompanyId:371677,CompanyName:bo,SearchVolume:b,ShortName:bo,UrlName:bp,Logo:bp,Rating:P,ReviewCount:5439},{CompanyId:2249,CompanyName:bq,SearchVolume:b,ShortName:bq,UrlName:br,Logo:br,Rating:P,ReviewCount:5331},{CompanyId:764623,CompanyName:bs,SearchVolume:b,ShortName:bs,UrlName:bt,Logo:bt,Rating:P,ReviewCount:5323},{CompanyId:390,CompanyName:bu,SearchVolume:b,ShortName:bu,UrlName:bv,Logo:bv,Rating:r,ReviewCount:4816},{CompanyId:ba,CompanyName:at,SearchVolume:b,ShortName:at,UrlName:aa,Logo:aa,Rating:H,ReviewCount:4271},{CompanyId:608245,CompanyName:bw,SearchVolume:b,ShortName:bw,UrlName:"ntt-data",Logo:"ntt-global-networks",Rating:y,ReviewCount:4185},{CompanyId:2263,CompanyName:bx,SearchVolume:b,ShortName:bx,UrlName:by,Logo:by,Rating:H,ReviewCount:3148},{CompanyId:919333,CompanyName:bz,SearchVolume:b,ShortName:bz,UrlName:bA,Logo:bA,Rating:g,ReviewCount:3076},{CompanyId:152822,CompanyName:bB,SearchVolume:b,ShortName:bB,UrlName:bC,Logo:bC,Rating:r,ReviewCount:2640},{CompanyId:575,CompanyName:bD,SearchVolume:b,ShortName:bD,UrlName:bE,Logo:bE,Rating:r,ReviewCount:2379},{CompanyId:152984,CompanyName:bF,SearchVolume:b,ShortName:bF,UrlName:bG,Logo:bG,Rating:O,ReviewCount:2108},{CompanyId:666,CompanyName:bH,SearchVolume:b,ShortName:bH,UrlName:"3i-infotech",Logo:"3i_infotech",Rating:3.4,ReviewCount:2058},{CompanyId:2238,CompanyName:bI,SearchVolume:b,ShortName:bI,UrlName:bJ,Logo:bJ,Rating:3.9,ReviewCount:1494},{CompanyId:4684,CompanyName:bK,SearchVolume:b,ShortName:bK,UrlName:bL,Logo:bL,Rating:4.2,ReviewCount:1349},{CompanyId:167911,CompanyName:bM,SearchVolume:b,ShortName:bM,UrlName:bN,Logo:bN,Rating:O,ReviewCount:289},{CompanyId:175482,CompanyName:bO,SearchVolume:b,ShortName:bO,UrlName:bP,Logo:bP,Rating:bQ,ReviewCount:69},{CompanyId:397764,CompanyName:bR,SearchVolume:b,ShortName:bR,UrlName:bS,Logo:bS,Rating:bQ,ReviewCount:bT}],notFound:c},jobs:{data:[],notFound:e},salaryData:{data:[{minCtc:p,maxCtc:bU,averageCtc:5.9,minExp:b,maxExp:I,dataPoints:26541,averageExperience:3.48,name:bV,urlName:bW,jobProfileId:m,industryRelativeSalaryPerc:a,includeLocUrl:c},{minCtc:bX,maxCtc:bT,averageCtc:13.7,minExp:p,maxExp:11,dataPoints:21877,averageExperience:6.25,name:bY,urlName:bZ,jobProfileId:1981,industryRelativeSalaryPerc:a,includeLocUrl:c},{minCtc:bU,maxCtc:ax,averageCtc:22.3,minExp:j,maxExp:17,dataPoints:12204,averageExperience:10.24,name:b_,urlName:b$,jobProfileId:bc,industryRelativeSalaryPerc:a,includeLocUrl:c},{minCtc:1.9,maxCtc:5.6,averageCtc:y,minExp:b,maxExp:g,dataPoints:5833,averageExperience:1.74,name:ca,urlName:cb,jobProfileId:z,industryRelativeSalaryPerc:a,includeLocUrl:c},{minCtc:bX,maxCtc:18,averageCtc:11.6,minExp:f,maxExp:aw,dataPoints:5205,averageExperience:7.76,name:"Team Lead",urlName:"team-lead",jobProfileId:15746,industryRelativeSalaryPerc:a,includeLocUrl:c}],notFound:c},designationSalaryData:{profileInfo:{departmentName:a,departmentUrlName:a,companyShortName:n,profileName:h,profileUrlName:i,locationName:a},profileInsights:{dataPoints:328770,minCtc:205104.61290614272,maxCtc:1800000,averageCtc:941954.3804639429,includeLocUrl:c},summaryData:{totalSalaryAverage:"878225.156668565",totalSalaryDataPoints:"4340",minCtc:"211249.95828188054",maxCtc:"1755022.8848524832",lastUpdated:"2025-05-22 01:47:46",minExp:b,maxExp:ay,percentiles:{"75.0":"713616.9355742297","10.0":"359913.41991341993","90.0":"969513.3333333334","99.0":"1900000","25.0":"436742.7536231884"},jobsCount:a,isAlertCreated:a,fixedPercent:a,variablePercent:a,isAllDataOlderThanFiveYears:b},ctcComparison:{indiaRelativePercentage:cc,industryRelativePercentage:cc},takeHomeSalary:{min:64166,max:65800,label:"months"},confidence:"VeryHigh",experienceLevels:[{minCtc:210000,maxCtc:654999,avgCtc:211249,minExp:b,maxExp:f,count:ax},{minCtc:200000,maxCtc:784999,avgCtc:325538,minExp:f,maxExp:p,count:235},{minCtc:195000,maxCtc:800000,avgCtc:462307,minExp:p,maxExp:m,count:874},{minCtc:204999,maxCtc:1100000,avgCtc:621557,minExp:m,maxExp:g,count:1414},{minCtc:385800,maxCtc:1354200,avgCtc:803288,minExp:g,maxExp:j,count:1033},{minCtc:450000,maxCtc:1650000,avgCtc:1007500,minExp:j,maxExp:az,count:495},{minCtc:500000,maxCtc:2009999,avgCtc:1234193,minExp:az,maxExp:I,count:188},{minCtc:721500,maxCtc:2670062,avgCtc:1483367,minExp:I,maxExp:ay,count:48},{minCtc:790000,maxCtc:2400000,avgCtc:1755022,minExp:ay,maxExp:cd,count:bd}],breadcrumbs:[{text:ce,path:aA},{text:cf,path:"https:\u002F\u002Fwww.ambitionbox.com\u002Fsalaries"},{text:cg,path:"https:\u002F\u002Fwww.ambitionbox.com\u002Fsalaries\u002Ftech-mahindra-salaries"},{text:"Tech Mahindra Software Developer Salaries",path:"https:\u002F\u002Fwww.ambitionbox.com\u002Fsalaries\u002Ftech-mahindra-salaries\u002Fsoftware-developer"}]},insightsData:{labels:[ch,"WalkIn",ci,"Referral","Campus Placement","Recruitment Consultant"],data:[ax,cj,cj,z,I,m],note:"15% candidates got the interview through other sources.",SourceReviewsCount:2682,confidence:"High"},interviews:[{interviewId:11915098,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:"Shafaque Sheikh",userImage:"https:\u002F\u002Fmedia.naukri.com\u002Fmedia\u002Fjphotov1\u002Fl244%253ALukcMT6%252F2gsaHr2zGUUDbZ0%252Fwn0lZss6g1s35sOgAerAUZntirEmRyLCme0%253D"},rounds:[{name:l,questions:[{question:"Different types of streams based questions",questionId:10858424,questionUrl:"different-types-of-streams-based-questions-TQ1C9JCy",answersCount:b},{question:"Collection , competable future, java 8 features",questionId:10858426,questionUrl:"collection-competable-future-java-8-features-TQ1FbJis",answersCount:b}]}],roundNames:[l],meta:{duration:d,difficulty:d,verdict:ck,rating:g,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11915098",interviewDate:d,createdAt:"2025-01-25 08:53:45",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[],comments:cl,type:t},{interviewId:10985472,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},rounds:[{name:J,details:"It was easy, had average difficulty . Basic english and aptitude was asked"},{name:l,questions:[{question:"Basics of computer fundamentals were asked in this round . OOPS , DBMS , SQL query etc. And 2 coding questions.",questionId:9550360,questionUrl:"basics-of-computer-fundamentals-were-asked-in-this-round-oops-dbms-sql-query-etc-and-2-coding-questions-NhvhS59O",answersCount:b},{question:"Another part was pychometric which is very very easy.",questionId:9550362,questionUrl:"another-part-was-pychometric-which-is-very-very-easy-Nhvku5fI",answersCount:b}]},{name:cm,questions:[{question:"Had to listen to audio and gave answer of the questions accordingly.",questionId:9550364,questionUrl:"had-to-listen-to-audio-and-gave-answer-of-the-questions-accordingly-NhvmM4BC",answersCount:b},{question:"It test your ability of writing , speaking and listening .",questionId:9550366,questionUrl:"it-test-your-ability-of-writing-speaking-and-listening-Nhvpo4h6",answersCount:b}]},{name:l,questions:[{question:"techincal interview was focussed on project .",questionId:9550368,questionUrl:"techincal-interview-was-focussed-on-project-NhvrG3D0",answersCount:b},{question:"A little bit of easy DSA and basics of CS fundamentals.",questionId:9550370,questionUrl:"a-little-bit-of-easy-dsa-and-basics-of-cs-fundamentals-Nhvui3ju",answersCount:b}]},{name:u,questions:[{question:"Project and interst",questionId:9550372,questionUrl:"project-and-interst-NhvwA2Fo",answersCount:b}]}],roundNames:[J,cn,cm,co,u],meta:{duration:ab,difficulty:aB,verdict:ac,rating:g,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=10985472",interviewDate:"in Jul 2024",createdAt:"2024-08-21 22:28:30",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[],comments:cp,type:t},{interviewId:11728252,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:"Annamalai S",userImage:"https:\u002F\u002Flh3.googleusercontent.com\u002Fa\u002FACg8ocLFC5t7kBXA43Z5layyHVMGCEJpGGIeg01Ibp-92Mf5hT8xIXeN=s96-c"},rounds:[{name:l,questions:[{question:"Oops concepts and stream api",questionId:10601182,questionUrl:"oops-concepts-and-stream-api-S6zVUMvA",answersCount:b}]},{name:l,questions:[{question:"Oops and stream api , spring boot",questionId:10601184,questionUrl:"oops-and-stream-api-spring-boot-S6zYwLR4",answersCount:b}]}],roundNames:[cn,co],meta:{duration:d,difficulty:d,rating:g,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11728252",interviewDate:d,createdAt:"2024-12-26 23:27:54",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[],comments:cq,type:t},{interviewId:11496572,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},rounds:[{name:l,questions:[{question:"Difference between List and tuple",questionId:10270496,questionUrl:cr,answersCount:f,answerDetail:{answer:cs,answeredByGenAI:e}},{question:"Questions on File handling",questionId:10270498,questionUrl:"questions-on-file-handling-QOYsnuC0",answersCount:b}]}],roundNames:[l],meta:{duration:d,difficulty:d,rating:m,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11496572",interviewDate:d,createdAt:"2024-11-20 12:50:55",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[{name:Q,url:R,questionCount:A},{name:aC,url:aD,questionCount:ad}],comments:ct,type:t},{interviewId:11774858,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:"Divyang Vadodariya",userImage:"https:\u002F\u002Flh3.googleusercontent.com\u002Fa\u002FACg8ocLvs4E2tnSone4tZCk_tl3RGC-H6OzSWPE-wOya7ycqJjIibYp3=s96-c"},rounds:[{name:l,questions:[{question:"what is opps in php",questionId:10664734,questionUrl:cu,answersCount:f,answerDetail:{answer:cv,answeredByGenAI:e}}]}],roundNames:[l],meta:{duration:d,difficulty:d,rating:j,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11774858",interviewDate:d,createdAt:"2025-01-03 18:18:10",contentType:s,experience:cw,upVotes:b,downVotes:b,newFlag:e},skills:[],comments:cx,type:t},{interviewId:10925340,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},rounds:[{name:l,questions:[{question:"oops concept in java",questionId:9465712,questionUrl:"oops-concept-in-java-MGvDjSZG",answersCount:f,answerDetail:{answer:"\u003Cp\u003EOops concept in Java refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EInheritance allows a class to inherit properties and behavior from another class.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EEncapsulation involves bundling data and methods that operate on the data into a single unit.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EPolymorphism allows objects to be treated as instances of their parent class.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EAbstraction hides the implementation details and only shows the necessary features to the outside world.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}},{question:"kotlin multiplatform in existing project",questionId:9465714,questionUrl:"kotlin-multiplatform-in-existing-project-MGvFBS5A",answersCount:f,answerDetail:{answer:"\u003Cp\u003EKotlin multiplatform allows sharing code between different platforms in an existing project.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EKotlin multiplatform enables sharing code between iOS and Android platforms\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EIt can be integrated into an existing project to reduce duplicate code\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ESupports common libraries and APIs for both platforms\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}},{question:"use of inheritance in kotlin",questionId:9465716,questionUrl:cy,answersCount:f,answerDetail:{answer:cz,answeredByGenAI:e}},{question:"why coroutines is used",questionId:9465718,questionUrl:cA,answersCount:f,answerDetail:{answer:cB,answeredByGenAI:e}}]}],roundNames:[l],meta:{duration:d,difficulty:d,rating:j,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=10925340",interviewDate:d,createdAt:"2024-08-12 17:54:53",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[{name:S,url:T,questionCount:A},{name:cC,url:cD,questionCount:ad}],comments:cE,type:t},{interviewId:10733040,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},interviewPreparation:"\u003Cb class='IS-section-heading'\u003ETopics to prepare for Tech Mahindra Software Developer interview: \u003C\u002Fb\u003E \u003Cul\u003E\u003Cli\u003EHTML\u003C\u002Fli\u003E\u003Cli\u003ECSS3\u003C\u002Fli\u003E\u003Cli\u003EJavascript\u003C\u002Fli\u003E\u003Cli\u003ESAAS\u003C\u002Fli\u003E\u003Cli\u003EJQuery\u003C\u002Fli\u003E\u003Cli\u003EReact.Js\u003C\u002Fli\u003E\u003Cli\u003ENode.Js\u003C\u002Fli\u003E\u003Cli\u003EMongoDB\u003C\u002Fli\u003E\u003Cli\u003EC\u003C\u002Fli\u003E\u003Cli\u003EBootstrap\u003C\u002Fli\u003E\u003C\u002Ful\u003E",rounds:[{name:u,questions:[{question:"Introducing your self",questionId:9189230,questionUrl:"introduce-yourself-Lql9mp9Q",answersCount:b},{question:"Communication skills",questionId:9189232,questionUrl:"communication-skills-LqlBEpfK",answersCount:b}]},{name:l,questions:[{question:"Explain react js with ux architecture",questionId:9189234,questionUrl:"explain-react-js-with-ux-architecture-LqlEgoBE",answersCount:f,answerDetail:{answer:"\u003Cp\u003EReact JS is a JavaScript library for building user interfaces, while UX architecture focuses on designing user experiences.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EReact JS is a front-end library used for building interactive user interfaces.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EUX architecture focuses on designing user experiences to ensure usability and user satisfaction.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ECombining React JS with UX architecture involves creating intuitive and user-friendly interfaces that prioritize user needs and behaviors.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EFor example, using React components to create a seamless and responsive user interface that enhances the overall user experience.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}},{question:"Create a architecture in using ux",questionId:9189236,questionUrl:"create-a-architecture-in-using-ux-LqlG8oh8",answersCount:f,answerDetail:{answer:"\u003Cp\u003ECreate a user experience (UX) architecture for software development.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIdentify user personas and their needs\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EDesign user flows and wireframes\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EImplement intuitive navigation and information architecture\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EEnsure consistency in visual design and interactions\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ETest and iterate on the UX design based on user feedback\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}}]},{name:ae,details:"\u003Chtml\u003E, \u003Cbody\u003E, \u003Chead\u003E, \u003Ctitle\u003E\u003Cmeta\u003E, \u003Cstyle\u003E"}],roundNames:[u,l,ae],meta:{duration:ab,difficulty:aB,verdict:ac,rating:g,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=10733040",interviewDate:"in Jun 2024",createdAt:"2024-07-17 12:11:11",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[{name:"Web Development",url:"web-development",questionCount:A}],sourceList:[ch,"Naukri.com"],comments:cF,type:t},{interviewId:11462900,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},interviewPreparation:"\u003Cb class='IS-section-heading'\u003EInterview preparation tips for other job seekers\u003C\u002Fb\u003E - im fresher and im a quick fast learner",rounds:[{name:af,details:"To introduce myself and my strengths",tips:"Be a good listener. GDs are not just about speaking. Your listening skills will give you a lot of points to counter and speak when your turn comes."},{name:u,questions:[{question:"What is software and how to developing software",questionId:10219882,questionUrl:"what-is-software-and-how-to-developing-software-Q8PBZ3VA",answersCount:f,answerDetail:{answer:"\u003Cp\u003ESoftware is a set of instructions that tells a computer how to perform specific tasks. Developing software involves designing, coding, testing, and maintaining programs.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003ESoftware is a collection of programs, data, and documentation that performs specific tasks on a computer.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EDeveloping software involves analyzing user requirements, designing the software architecture, coding the program, testing for bugs, and maintaining the software.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExamples of software development tools include programming languages like Java, Python, and C++, as well as integrated development environments (IDEs) like Visual Studio and Eclipse.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}},{question:"How to a write a programming languages in software developer",questionId:10219884,questionUrl:cG,answersCount:f,answerDetail:{answer:cH,answeredByGenAI:e}},{question:"How to learning software developer",questionId:10219886,questionUrl:cI,answersCount:f,answerDetail:{answer:cJ,answeredByGenAI:e}}]}],roundNames:[af,u],meta:{duration:ab,difficulty:aE,verdict:ac,rating:g,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11462900",interviewDate:"in Oct 2024",createdAt:"2024-11-13 15:04:43",contentType:s,experience:cK,upVotes:b,downVotes:b,newFlag:e},skills:[{name:S,url:T,questionCount:A}],sourceList:["Walk-in"],comments:cL,type:t},{interviewId:11798506,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},rounds:[{name:J,details:"apti, resoning for 2 hrs"},{name:ae,details:"4 coading questions\u003Cbr\u003E 2 easy, 2 hard"},{name:u,questions:[{question:"Introduction\nvision\nwhere u see yourself in 5 years",questionId:10700680,questionUrl:"introductionvisionwhere-u-see-yourself-in-5-years-TcjaVqBk",answersCount:f,answerDetail:{answer:"\u003Cp\u003EIn 5 years, I see myself as a senior software developer leading a team of developers on innovative projects.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EContinuing to enhance my technical skills and knowledge through ongoing learning and certifications\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ETaking on more leadership responsibilities and mentoring junior developers\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EContributing to the success and growth of the company through my expertise and dedication\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}}]}],roundNames:[J,ae,u],meta:{duration:d,difficulty:d,rating:j,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11798506",interviewDate:d,createdAt:"2025-01-07 18:02:22",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[],comments:cM,type:t},{interviewId:11374358,companyId:k,jobProfileId:g,companyDetails:{logo:q,name:n,urlName:o},jobProfileDetails:{urlName:i,name:h},userDetails:{userName:v,userImage:d},interviewPreparation:"\u003Cb class='IS-section-heading'\u003EInterview preparation tips for other job seekers\u003C\u002Fb\u003E - Keep in formal dress and show confidence.",rounds:[{name:J,details:"It was a moderate level aptitude test followed with 2 coding questions."},{name:af,details:"It was a communication round",tips:"Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion."},{name:l,questions:[{question:"What is linklist?",questionId:10091790,questionUrl:cN,answersCount:f,answerDetail:{answer:cO,answeredByGenAI:e}},{question:"They asked we 2 DSA easy level ques and 2 SQL queries",questionId:10091792,questionUrl:"they-asked-we-2-dsa-easy-level-ques-and-2-sql-queries-PTZq6Vz4",answersCount:b}]},{name:u,questions:[{question:"About my family background",questionId:10091794,questionUrl:"about-my-family-background-PTZsYUVy",answersCount:b},{question:"Are you comfortable with 24\u002F7 rotational shifts?",questionId:10091796,questionUrl:"are-you-comfortable-with-24-or-7-rotational-shifts-PTZv0U1s",answersCount:f,answerDetail:{answer:"\u003Cp\u003EYes, I am comfortable with 24\u002F7 rotational shifts as I understand the importance of round-the-clock support in the software development industry.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EI have previous experience working in rotational shifts and understand the need for flexibility in scheduling.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EI am willing to adapt my work schedule to accommodate the needs of the team and the project.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EI am committed to maintaining high productivity and quality of work regardless of the shift timing.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EI understand the importance of providing continuous support to ensure smooth operation of software systems.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EI am aware of the challenges that come with working in rotational shifts and am prepared to handle them effectively.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answeredByGenAI:e}}]}],roundNames:[J,af,l,u],meta:{duration:cP,difficulty:aE,verdict:ck,rating:m,shareURL:"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=11374358",interviewDate:"in Apr 2024",createdAt:"2024-10-25 10:59:46",contentType:s,upVotes:b,downVotes:b,newFlag:e},skills:[{name:Q,url:R,questionCount:A}],sourceList:[ci],comments:cQ,type:t}],similarInterviews:B,noData:c,pagination:{currentPage:f,totalPages:g,totalResults:aF,baseUrl:aG,pageBase:{page:B,sort_by:B,company:B,designation:B,interview_type:B,verdict:B}},intPagination:{currentPage:f,totalPages:z,baseUrl:aG,totalResults:aH},seoBreadcrumbs:[{Text:ce,Path:aA},{Text:cR,Path:"https:\u002F\u002Fwww.ambitionbox.com\u002Finterviews"},{Text:cS,Path:"https:\u002F\u002Fwww.ambitionbox.com\u002Finterviews\u002Ftech-mahindra-interview-questions"},{Text:cT,Path:aI}],topJobProfiles:a,similarJobProfiles:{data:[{Name:"Senior Software Developer",UrlName:"senior-software-developer",Count:z},{Name:"Software Developer fresher",UrlName:"software-developer-fresher",Count:az},{Name:"Associate Software Developer",UrlName:"associate-software-developer",Count:j},{Name:"Junior Software Developer",UrlName:"junior-software-developer",Count:g},{Name:"Java Software Developer",UrlName:"java-software-developer",Count:m},{Name:"Software Developer Intern",UrlName:"software-developer-intern",Count:p},{Name:"Software Developer Trainee",UrlName:"software-developer-trainee",Count:f},{Name:"Full Stack Software Developer",UrlName:"full-stack-software-developer",Count:m}],notFound:c},faq:[{Question:"How many rounds are there in Tech Mahindra Software Developer interview?",Answer:"Tech Mahindra interview process usually has \u003Cb\u003E2-3 rounds\u003C\u002Fb\u003E. The most common rounds in the Tech Mahindra interview process are \u003Cb\u003ETechnical, Aptitude Test and HR\u003C\u002Fb\u003E."},{Question:"How to prepare for Tech Mahindra Software Developer interview?",Answer:"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 \u003Cb\u003ESoftware Development, Java, Hibernate, Spring and Struts\u003C\u002Fb\u003E."},{Question:"What are the top questions asked in Tech Mahindra Software Developer interview?",Answer:"\u003Cp\u003ESome of the top questions asked at the Tech Mahindra Software Developer interview - \u003C\u002Fp\u003E\u003Col style='margin-left: 25px;'\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003Ewhat is the difference between call by value and call by referen\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=5925329&tag=3077451\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003EWhat is the difference b\u002Fw confidence and over confiden\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=2570501&tag=498725\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003E1)What was the introduced in c programming\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=6450255&tag=3944519\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003C\u002Fol\u003E"},{Question:"What are the most common questions asked in Tech Mahindra Software Developer HR round?",Answer:"\u003Cp\u003EThe most common HR questions asked in Tech Mahindra Software Developer interview are - \u003C\u002Fp\u003E\u003Col style='margin-left: 25px;'\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003EWhat is your family backgrou\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=5044477&tag=2006153\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003EWhere do you see yourself in 5 yea\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=5044477&tag=2006157\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003Cli style='padding-bottom: 2px;'\u003E\u003Cspan\u003EWhat are your strengths and weakness\u003C\u002Fspan\u003E...\u003Ca class=\"ctas-a-medium\" href=\"\u002Finterviews\u002Ftech-mahindra-interview-questions?rid=5044477&tag=2006159\"\u003Eread more\u003C\u002Fa\u003E\u003C\u002Fli\u003E\u003C\u002Fol\u003E"},{Question:"How long is the Tech Mahindra Software Developer interview process?",Answer:"\u003Cp\u003EThe duration of Tech Mahindra Software Developer interview process can vary, but typically it takes about \u003Cb\u003Eless than 2 weeks\u003C\u002Fb\u003E to complete.\u003C\u002Fp\u003E"}],companyInterviewSeoFilters:cU,companyInterviewFilters:{state:M,experienceFilters:[{count:1592,id:aJ,urlName:cw,name:"Experienced"},{count:613,id:cX,urlName:cK,name:"Fresher"}],designationFilters:cU,jobTypeFilters:[{count:2629,id:cX,urlName:"job",name:"Job"},{count:av,id:aJ,urlName:"internship",name:"Internship"}],contentTypeFilters:a,verdictFilters:[{count:1857,id:aJ,urlName:"selected",name:ac}]},similarDesignationSeoFilters:[],popularDesignationSeoFilters:[],topCollegesForCompany:{state:M,data:[{ShortName:"National Institute of Technology (NIT), Warangal",UrlName:cY,Logo:cY,InterviewsCount:j},{ShortName:"Jawaharlal Nehru Technological University (JNTU)",UrlName:"jawaharlal-nehru-technological-university-jntu",Logo:d,InterviewsCount:m},{ShortName:"D Y Patil College of Engineering, Pune",UrlName:"d-y-patil-college-of-engineering-pune",Logo:d,InterviewsCount:p},{ShortName:"Nagpur University",UrlName:cZ,Logo:cZ,InterviewsCount:f},{ShortName:"JB Institute of Technology, Dehradun",UrlName:c_,Logo:c_,InterviewsCount:f},{ShortName:"Zisaji Presidency College, Aland",UrlName:"zisaji-presidency-college-aland",Logo:d,InterviewsCount:f},{ShortName:"Anurag College of Engineering, Hyderabad",UrlName:c$,Logo:c$,InterviewsCount:f}]},designation:h,experience:d,employment:d,verdict:d,lastUpdated:da,jsonld:{"@context":"https:\u002F\u002Fschema.org","@type":"Article",url:aI,name:cT,description:db,dateModified:"2025-04-11T08:16:46.000Z"},reviews:{id:70829584,companyName:n,urlName:o,likesText:"The company's human resources hired employee. Provided training session are good. Efficient trainers. Skill developement. Good salary promotions. Green environment. Company has amazing good will.",disLikesText:d,workDescriptionText:a,workDescriptionTags:a,benefitsText:a,jobLocation:{id:"6",urlName:"chennai",name:"Chennai",shortName:a,parentId:a},division:"Non Voice",overallCompanyRating:j,views:a,workPolicy:"WFO",workPolicyOther:a,created:"2025-05-23 15:35:01",modified:"2025-05-23 15:39:36",url:"\u002Freviews\u002Ftech-mahindra-reviews?rid=70829584",helpfulCount:a,notHelpfulCount:a,employmentType:"fulltime",userName:v,picture:a,startDate:a,endDate:a,currentJob:a,userId:b,ratingDistribution:[{name:dc,rating:j},{name:dd,rating:j},{name:de,rating:j},{name:df,rating:j},{name:dg,rating:j},{name:dh,rating:j},{name:di,rating:j}],modifiedHumanReadable:"23 May 2025",modifiedMachineReadable:"2025-05-23",workLabels:{travelTags:["No Travel"],workTimeMonitor:["Flexible Timings"],workDays:["Rotational Shift"]},jobProfile:{id:"979",urlName:"senior-technical-associate",name:"Senior Technical Associate",shortName:a,parentId:a},facilities:a,reviewerExperience:a,employerResponse:a,verified:e,continued:I,companyId:a,logoUrl:a,subStatus:a,likesChip:[{urlName:dj,name:dc,quality:C},{urlName:dk,name:dd,quality:C},{urlName:dl,name:de,quality:C},{urlName:dm,name:df,quality:C},{urlName:"job-satisfaction",name:dg,quality:C},{urlName:dn,name:dh,quality:C},{urlName:do0,name:di,quality:C}],dislikesChip:[],isFeaturedReview:c,isEmployerResponded:c,employerResponseId:a},topQuestions:{state:M,data:[{question:"What is OOP in PHP?",containsHtml:c,questionUrl:cu,answer:cv,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[],createdOn:"4mo ago"},{question:"What is the difference between a List and a Tuple?",containsHtml:c,questionUrl:cr,answer:cs,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[{id:dp,urlName:R,name:Q},{id:"534",urlName:aD,name:aC}],createdOn:ag},{question:"How to write a programming language?",containsHtml:c,questionUrl:cG,answer:cH,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[{id:dq,urlName:T,name:S}],createdOn:ag},{question:"How should I learn to become a software developer?",containsHtml:c,questionUrl:cI,answer:cJ,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[{id:dq,urlName:T,name:S}],createdOn:ag},{question:"Explain the concepts of OOP.",containsHtml:c,questionUrl:"explain-the-concepts-of-oop-Qf0lo8g0",answer:"\u003Cp\u003EOOP (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EOOP focuses on organizing code into objects that interact with each other.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKey principles of OOP include encapsulation, inheritance, and polymorphism.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EEncapsulation involves bundling data and methods that operate on the data into a single unit.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EInheritance allows classes to inherit attributes and methods from other classes.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EPolymorphism allows objects to be treated as instances of their parent class.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExamples of OOP languages include Java, C++, and Python.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[],createdOn:ag},{question:"What is a linked list?",containsHtml:c,questionUrl:cN,answer:cO,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[{id:dp,urlName:R,name:Q}],createdOn:"7mo ago",duplicateCount:m},{question:"How is inheritance used in Kotlin?",containsHtml:c,questionUrl:cy,answer:cz,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[],createdOn:dr},{question:"Why are coroutines used?",containsHtml:c,questionUrl:cA,answer:cB,answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[],createdOn:dr},{question:"Explain the concepts of OOPS.",containsHtml:c,questionUrl:"explain-the-concepts-of-oops-JU88yXIi",answer:"\u003Cp\u003EOOPS Concepts are fundamental principles of Object-Oriented Programming like Inheritance, Encapsulation, Polymorphism, and Abstraction.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EInheritance: Allows a class to inherit properties and behavior from another class.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EEncapsulation: Bundling data and methods that operate on the data into a single unit.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EPolymorphism: Ability to present the same interface for different data types.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EAbstraction: Hiding the complex implementation details and showing only the necessary features.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[],createdOn:"11mo ago",duplicateCount:g},{question:"What is the sequence of delete, truncate, and drop commands?",containsHtml:c,questionUrl:"what-is-the-sequence-of-delete-truncate-and-drop-commands-H72vQTXM",answer:"\u003Cp\u003EThe sequence of delete, truncate, and drop is in increasing order of data removal and impact on the database.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EDelete removes specific rows from a table without affecting the table structure. Example: DELETE FROM table_name WHERE condition;\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ETruncate removes all rows from a table, but keeps the table structure intact. Example: TRUNCATE TABLE table_name;\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EDrop removes the entire table along with its structure from the database. Example: DROP TABLE table_name;\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",answersCount:f,jobProfile:h,jobProfileUrl:i,topics:[{id:"546",urlName:"sql",name:"SQL"}],createdOn:"12mo ago"}],meta:{count:aF,currentPage:f,totalPages:g,countReadable:"30+"}},aggInsightCardData:{overallRating:4.053191489361702,duration:[{label:ab,value:72.22222},{label:cP,value:13.888889},{label:"4-6 weeks",value:ds},{label:"6-8 weeks",value:ds},{label:"More than 8 weeks",value:2.7777777}],difficulty:[{label:aB,value:au},{label:aE,value:62.5},{label:"Hard",value:2.5}],meta:{interviewCount:cW},rounds:["Resume Shortlist Round","Coding Test Round - 1","Coding Test Round - 2","HR Round","Technical Round"]},ratingsData:{totalCount:aK,ratingCounts:{overallCompanyRating:aK,workSatisfactionRating:ah,careerGrowthRating:dt,skillDevelopmentRating:ah,workLifeRating:374,compensationBenefitsRating:dt,jobSecurityRating:ah,companyCultureRating:ah},lastUpdatedAt:"19 May, 2025",ratings:{jobSecurityRating:y,workLifeRating:y,overallCompanyRating:y,companyCultureRating:r,skillDevelopmentRating:r,workSatisfactionRating:H,compensationBenefitsRating:P,careerGrowthRating:3.1},distribution:[{percentage:36.22047244094488,count:138,rating:j},{percentage:30.446194225721783,count:116,rating:g},{percentage:19.160104986876643,count:73,rating:m},{percentage:4.986876640419948,count:19,rating:p},{percentage:9.186351706036746,count:au,rating:f}],ratingTags:{careerGrowthRating:dm,skillDevelopmentRating:dk,compensationBenefitsRating:dj,workLifeRating:do0,jobSecurityRating:dl,companyCultureRating:dn},industryAverage:{percentage:m,trend:"Positive"}},fixedReviewCount:aK,noIndex:c,skillsInterlinkingData:[{name:Q,url:R,questionCount:A},{name:S,url:T,questionCount:A},{name:aC,url:aD,questionCount:ad},{name:cC,url:cD,questionCount:ad}],feedInterlinkingWidgetData:{type:"PERSONALIZED",posts:[{id:"68277fb63a7be00023a24a26",uid:"527NAaZS",content:"I received an offer from TCS with a variable pay component of ₹2 lakh. I requested a reduction in the variable pay, but the HR declined. They mentioned the maximum Variable Pay Achievement (VPA) I could receive is 75%. Can anyone clarify how much a C3A role employee typically earns as variable pay, and whether this 75% cap is standard?\n\nAlso what happens if we don't go to the office 5 Days a week.?\nIs there any deduction in salary.?",author:{userName:"frostycheetah",avatarUrl:"avatars\u002Ffood\u002Fpancakes-emoji.webp",fullAvatarUrl:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fassets\u002Fv2\u002Fimages\u002Fbg:ddf4fa\u002FaHR0cHM6Ly9zdGF0aWMuYW1iaXRpb25ib3guY29tL3N0YXRpYy9hdmF0YXJzL2Zvb2QvcGFuY2FrZXMtZW1vamkud2VicA==.webp",avatarBgColor:"#ddf4fa",isVerified:f,profileBio:{position:"works at",organization:n,organizationUrl:o,longBio:a,verifiedText:"This user is a verified working professional."},profileType:"ANONYMOUS"},mediaUrl:[],meta:{comments:p,upvotes:z},communities:[{entityId:"8",name:"IT & Information Security",description:"Secure your digital infrastructure and leverage technology through discussions on IT and information security.",logo:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fassets\u002Fv2\u002Fimages\u002Frs:fit:100:100\u002FaHR0cHM6Ly9zdGF0aWMuYW1iaXRpb25ib3guY29tL2FscGhhL2RlcGFydG1lbnQvbG9nb3MvaXQtaW5mb3JtYXRpb24tc2VjdXJpdHkucG5n.webp",slug:"it-information-security",type:"department"}],time:"4d",isDeleted:a,isEdited:a,status:a,poll:a,title:"VPay in TCS",shareUrl:"https:\u002F\u002Fnauk.in\u002Fko6pvIt9",shareImageUrl:"https:\u002F\u002Fwww.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FR3k3cEtUNGFrWVFOaDdic1Iwby9uQT09",redirectUrl:a,slug:"vpay-in-tcs-527NAaZS-8",topComment:a,salary:a,postCommunityTagline:"Never miss out on real career conversations",postCategory:a,isPostAuthor:c,fullContent:["\u003Cspan style=\"font-weight:400;font-size:1rem;line-height:1.5rem;color:#1E223C;\"\u003EI received an offer from TCS with a variable pay component of ₹2 lakh. I requested a reduction in the variable pay, but the HR declined. They mentioned the maximum Variable Pay Achievement (VPA) I could receive is 75%. Can anyone clarify how much a C3A role employee typically earns as variable pay, and whether this 75% cap is standard?\n\nAlso what happens if we don't go to the office 5 Days a week.?\nIs there any deduction in salary.?\u003C\u002Fspan\u003E"],slicedContent:["\u003Cspan style=\"font-weight:400;font-size:1rem;line-height:1.5rem;color:#1E223C;\"\u003EI received an offer from TCS with a variable pay component of ₹2 lakh. I requested a reduction in the variable pay, but the HR declined. They mentioned the maximum Variable Pay Achievement (VPA) I could receive is 75%. Can anyone clarify ho... \u003C\u002Fspan\u003E"]}]},lockEnabled:e,designationInterviews:{state:M,pagination:{currentPage:f,totalPages:50,totalQuestions:7215},questions:[{question:"Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is achieved by the subarray [42, 14, -5, 86]. Input: array = [-5, -1, -8, -9] Output: -1 Explanation: The maximum sum is -1, achieved by the subarray [-1]. Constraints: 1 ≤ N ≤ 106, where N is the number of elements in the array. -104 ≤ array[i] ≤ 104 Note: The solution should have a time complexity of O(N). Input: The first line contains a single integer, N, the size of the array. The second line contains N space-separated integers representing the elements of the array. Output: A single integer, the maximum subarray sum.",containsHtml:e,answer:"\u003Cp\u003EFind the maximum sum of any contiguous subarray within an array of integers.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate through the array and keep track of the maximum sum of subarrays encountered so far.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EAt each index, decide whether to include the current element in the subarray or start a new subarray.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EUse Kadane's algorithm to efficiently find the maximum subarray sum in O(N) time complexity.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"maximum-subarray-sum-problem-statement-jvjJ9IBb",companyUrl:K,companyName:ai,answersCount:aq,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:K,id:du,urlName:K,name:ai}],companiesCount:b,updatedOn:aj},{question:"Minimum Number of Platforms Needed Problem Statement You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of platforms required so that no train has to wait, meaning that every arriving train has an available platform immediately. Input: The input begins with a single integer T, representing the number of test cases. Each test case consists of: - A line with a positive integer N, the number of trains. - A line containing N integers, the arrival times of the trains in HHMM format. - A line containing N integers, the departure times of the trains in HHMM format. Output: For each test case, return the minimum number of platforms needed at the railway station. Example: Input: T = 1 N = 3 Arrivals = [900, 940, 950] Departures = [910, 1200, 1120] Output: 2 Explanation: In the given example, between 940 and 950, you have two overlapping schedules which require two platforms. Constraints: 1 <= T <= 100 1 <= N <= 1000 0 <= arrival[i] <= departure[i] <= 2359 Time representation is in HHMM format. Note: Do not print anything. It has been already taken care of.",containsHtml:e,answer:"\u003Cp\u003EDetermine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003ESort the arrival and departure times in ascending order.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EUse two pointers to keep track of overlapping schedules.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EIncrement the platform count when a new train arrives before the previous one departs.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EReturn the maximum platform count needed.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"minimum-number-of-platforms-needed-problem-statement-lVCnRL6j",companyUrl:K,companyName:ai,answersCount:I,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:K,id:du,urlName:K,name:ai}],companiesCount:b,updatedOn:dv},{question:"Merge Two Sorted Arrays Problem Statement Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hold all elements of ARR2. Input: The first line contains an integer T representing the number of test cases. Each test case contains: - Two space-separated integers M and N.- A line with M integers followed by N zeros in ARR1.- A line with N integers in ARR2. Output: For each test case, return the merged ARR1 as one sorted array. Example: Input:ARR1 = [3, 6, 9, 0, 0]ARR2 = [4, 10]Output:ARR1 = [3, 4, 6, 9, 10] Constraints: 1 <= T <= 100 1 <= M, N <= 5000 1 <= ARR1[i], ARR2[i] <= 100000 Time Limit: 1 second Note: Ensure the function implementation handles the merging, output has already been managed.",containsHtml:e,answer:"\u003Cp\u003EMerge two sorted arrays into one sorted array in place.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate from the end of both arrays and compare elements to merge in place\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EUse two pointers to keep track of the current position in each array\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EHandle cases where one array is fully merged before the other\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"merge-two-sorted-arrays-problem-statement-k48EbhEl",companyUrl:"rakuten",companyName:"Rakuten",answersCount:g,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:dw,id:"152605",urlName:dw,name:"Blackrock"}],companiesCount:b,updatedOn:aj},{question:"Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single integer ‘N’ for each test case. Output: Return the Nth Fibonacci number for each test case. Example: Input: N = 5 Output: 5 Explanation: The Fibonacci sequence up to the 5th term is: 1, 1, 2, 3, 5. Hence, the 5th Fibonacci number is 5. Constraints: 1 <= N <= 10000 Input ‘N’ is a positive integer. Note You are required to implement the function and return the result. The focus is on calculating efficiently within the given time limit.",containsHtml:e,answer:"\u003Cp\u003ECalculate the Nth Fibonacci number efficiently using dynamic programming.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EUse dynamic programming to store and reuse previously calculated Fibonacci numbers.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EStart with base cases F(1) and F(2) as 1, then calculate subsequent Fibonacci numbers.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EOptimize the solution to avoid redundant calculations by storing intermediate results.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ETime complexity can be reduced to O(N) using dynamic programming.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: For N = 5, the 5th Fibonacci number is 5.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"nth-fibonacci-number-problem-statement-mite1X0v",companyUrl:x,companyName:N,answersCount:j,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:x,id:"43",urlName:x,name:N}],companiesCount:b,updatedOn:dx},{question:"Form a Triangle Problem Statement You are given an array of integers ARR with a length of N. Your task is to determine whether it's possible to construct at least one non-degenerate triangle using the values from the array as the sides of the triangle. If possible, return true; otherwise, return false. Input: The first line contains a single integer 'T' denoting the number of test cases. For each test case: The first line contains a single integer 'N' denoting the number of elements in the array. The second line contains 'N' space-separated integers denoting the elements of the array. Output: For each test case, return \"YES\" if it is possible to form a non-degenerate triangle, otherwise return \"NO\". Each test case output should be printed on a separate line. Example: Input: 2 3 3 4 5 4 1 10 12 30 Output: YES NO Constraints: 1 ≤ T ≤ 100 3 ≤ N ≤ 10^3 0 ≤ ARR[i] ≤ 10^9 Note: You are not required to print anything since this is already managed by the system. Your goal is to implement the functionality that returns the correct result.",containsHtml:e,answer:"\u003Cp\u003EDetermine if it's possible to form a non-degenerate triangle using array elements as sides.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003ECheck if the sum of any two sides is greater than the third side to form a triangle.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EIf any such combination exists, return 'YES'; otherwise, return 'NO'.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: For input [3, 4, 5], sum of 3 + 4 > 5, so 'YES'. For [1, 10, 12, 30], no such combination exists, so 'NO'.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"form-a-triangle-problem-statement-mlLO31cL",companyUrl:"phonepe",companyName:"PhonePe",answersCount:p,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:"athenahealth",id:"207103",urlName:"athenahealth-technology",name:"Athenahealth Technology"}],companiesCount:b,updatedOn:aj},{question:"Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in a sequence. He plans to arrange them in 'N' rows such that: The first row contains 1 number. The second row contains 2 numbers. The third row contains 3 numbers, and so on. The numbers are placed in increasing order with an absolute difference of 1. Starting from 1 and continuing until 9, after which the sequence restarts from 1. Input: The first line contains 'T', representing the number of test cases. Each test case has a single integer 'N', indicating the number of rows. Output: For each test case, output the integers in the pattern for the next 'N' lines. Example: Input: 1 4 Output: 1 23 456 7891 Constraints: 1 <= T <= 10 1 <= N <= 500 Note: The expected output is printed automatically; focus on implementing the function logic.",containsHtml:e,answer:"\u003Cp\u003EArrange numbers in a sequence in 'N' rows with increasing order and repeating after 9.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate through each test case and for each row, print numbers in increasing order with a loop.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKeep track of the current number to print and reset to 1 after reaching 9.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EHandle formatting to align numbers correctly in each row.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EEnsure to print the correct number of rows based on the input 'N'.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"crazy-numbers-pattern-challenge-mfYZo4uZ",companyUrl:ak,companyName:aL,answersCount:p,skills:[],topCompanies:[{logo:ak,id:"527",urlName:ak,name:aL}],companiesCount:b,updatedOn:"2d ago"},{question:"Array Intersection Problem Statement Given two integer arrays\u002F lists ARR1 and ARR2 of sizes N and M respectively, you are required to determine their intersection. An intersection is defined as the set of common values existing in both arrays\u002Flists. Note: - Input arrays\u002Flists can contain duplicate elements.- The intersection elements should be printed in the order they appear in the first array\u002Flist ARR1. Input: First line contains an integer 't' indicating the number of test cases. For each test case: - First line contains an integer 'N', size of ARR1. - Second line contains 'N' space-separated integers representing ARR1. - Third line contains an integer 'M', size of ARR2. - Fourth line contains 'M' space-separated integers representing ARR2. Output: For each test case, output the intersection elements as a single line, separated by spaces.Print a separate line for each test case. Example: Input: 241 2 2 332 3 451 2 2 3 432 2 5 Output: 2 32 2 Constraints: 1 ≤ t ≤ 10^2 0 ≤ N ≤ 10^5 0 ≤ M ≤ 10^5 Time Limit: 1 sec",containsHtml:e,answer:"\u003Cp\u003EThe task is to find the intersection of two integer arrays\u002Flists.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003ERead the number of test cases\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EFor each test case, read the size and elements of the first array\u002Flist\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ERead the size and elements of the second array\u002Flist\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EFind the intersection of the two arrays\u002Flists\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EPrint the intersection elements in the order they appear in the first array\u002Flist\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"array-intersection-problem-statement-lPXvxpoV",companyUrl:aM,companyName:dy,answersCount:m,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:aM,id:"163704",urlName:aM,name:dy}],companiesCount:b,updatedOn:aj},{question:"Find Terms of Series Problem Ayush is tasked with determining the first 'X' terms of the series defined by 3 * N + 2, ensuring that no term is a multiple of 4. Input: The first line contains a single integer 'T', the number of test cases.Each test case includes one integer 'X', which represents the number of terms required from the series. Output: For each test case, return a list containing the first 'X' terms of the series 3 * N + 2 that are not multiples of 4.Each test case's output should be on a new line. Example: Input: X = 4 Output: [5, 11, 14, 17] Explanation: The sequence begins as 5, 8, 11, 14, 17, ...; the numbers 5, 11, 14, and 17 are not multiples of 4. Constraints: 1 <= T <= 10^2 1 <= X <= 10^5 Note: You don’t need to perform any output operations; focus on implementing the solution logic.",containsHtml:e,answer:"\u003Cp\u003EGenerate the first 'X' terms of a series 3 * N + 2, excluding multiples of 4.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate through numbers starting from 1 and check if 3 * N + 2 is not a multiple of 4.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKeep track of the count of terms generated and stop when 'X' terms are found.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EReturn the list of 'X' terms that meet the criteria.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: For X = 4, the output should be [5, 11, 14, 17].\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"find-terms-of-series-problem-jwyS016n",companyUrl:aN,companyName:dz,answersCount:p,skills:[],topCompanies:[{logo:aN,id:"2247",urlName:aN,name:dz}],companiesCount:b,updatedOn:"5d ago"},{question:"Connect Ropes Problem Statement Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two ropes is determined by the sum of their lengths. Your goal is to find the minimum cost required to connect all the ropes. Input: The first line of input consists of a single integer T, indicating the number of test cases to handle.Each test case includes:- The first line specifies the number of ropes, N.- The second line provides the rope lengths as N space-separated integers. Output: For each test case, output a single integer representing the minimum cost to connect all the ropes. Print each result on a new line. Example: Input: T = 1 N = 4 Lengths = [4, 3, 2, 6] Output: 29 Constraints: 1 <= T <= 10 1 <= N <= 104 1 <= length[i] <= 104 Time Limit: 1 second Note: You do not need to print anything as it is already handled. Implement the provided function to compute the necessary result.",containsHtml:e,answer:"\u003Cp\u003EThe task is to find the minimum cost required to connect all the ropes by summing their lengths.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate through the ropes and connect the two shortest ropes at each step to minimize cost\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EUse a priority queue to efficiently find the shortest ropes\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKeep track of the total cost as you connect the ropes\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for a total cost of 29\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"connect-ropes-problem-statement-jvwvBnKj",companyUrl:aO,companyName:dA,answersCount:m,skills:[{id:D,urlName:E,name:F}],topCompanies:[{logo:aO,id:"369653",urlName:aO,name:dA}],companiesCount:b,updatedOn:dx},{question:"String Compression Problem Statement Ninja needs to perform basic string compression. For any character that repeats consecutively more than once, replace the repeated sequence with the character followed by the count of repetitions. Input: An integer 'T' representing the number of test cases.For each test case, a string 'S' indicating the input string to be compressed. Output: Output the compressed string for each test case on a new line. Example: If the string contains 'x' repeated 5 times, replace 'xxxxx' with 'x5'.Compression occurs only if the repeated count is greater than 1. Constraints: 1 ≤ T ≤ 5 1 ≤ |S| ≤ 5000 Consecutive count of any character in the input is ≤ 9 Note: There's no need for input or output operations, as these are already managed. Just implement the required function.",containsHtml:e,answer:"\u003Cp\u003EImplement a function to compress a string by replacing consecutive characters with the character followed by the count of repetitions.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIterate through the input string and keep track of consecutive characters and their counts.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EReplace consecutive characters with the character followed by the count of repetitions if count is greater than 1.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EReturn the compressed string as output.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",questionUrl:"string-compression-problem-statement-jwxpUL0l",companyUrl:ak,companyName:aL,answersCount:p,skills:[],topCompanies:[{logo:G,id:"41",urlName:G,name:V}],companiesCount:b,updatedOn:dv}]}},{}],fetch:{},error:a,state:{company:{companyInfo:{ratingOneDecimal:O,isPremium:c,coverPhoto:{type:a,url:a,fileName:a,title:a,description:a,additionalData:a,pagePublishedForJS:c},employerEngaged:e,aboutInfoResponse:{tagLine:a},automatedVideoUrl:"351\u002F351.mp4",primaryIndustryId:155,companyId:k,shortName:n,logo:q,urlName:o,followersCount:91777,website:"https:\u002F\u002Fwww.techmahindra.com\u002Fen-in\u002F",startDate:"1986-01-01",bannerColor:"#FA0A30",totalEmployeesIndia:dB,shortBio:"Tech Mahindra specializes in digital transformation utilizing advanced technologies to enhance customer experiences across industries globally.",rating:O,closed:b,companyReviewsLive:dC,interviewExperiencesLive:dD,companyInterviewQuestions:2400,companySalaries:dE,companyJobsLive:dF,photosCount:aP,hQ:"Pune, Maharashtra",hQCountry:"India",hQUrlName:"pune",aboutUs:"Tech Mahindra offers innovative and customer-centric digital experiences, enabling enterprises, associates, and society to rise. We are a USD 5.1 billion organization with 141,100+ professionals across 90 ",benefitsLive:dG,tags:[{companyId:k,name:"IT Services & Consulting",urlName:"it-services-and-consulting"},{companyId:k,name:"Analytics & KPO",urlName:"analytics-and-kpo"},{companyId:k,name:"Engineering & Construction",urlName:"engineering-and-construction"}],info:[{type:"CompanyType",label:"Public",url:"public"},{type:"TotalEmployees",label:dB,url:dH},{type:"TotalEmployeesIndia",label:"1 Lakh+",url:dH}],industriesUrl:"bpo-or-kpo,consulting,analytics-and-kpo,engineering-and-construction,it-services-and-consulting",industryNaukriIds:[cV],parentCompany:{ShortName:"Mahindra & Mahindra",UrlName:"mahindra-and-mahindra",Relation:a},hasOfficeLocations:e,relationsCount:aw,enableAssociation:c,logoUrl:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fassets\u002Fv2\u002Fimages\u002Frs:fit:200:200:false:false\u002FbG9jYWw6Ly8vbG9nb3Mvb3JpZ2luYWxzL3RlY2gtbWFoaW5kcmEuanBn.webp",n95Score:.69,awardYear:a},stats:{companyId:k,interviewExperiencesLive:dD,companyReviewsLive:dC,totalReviewsWithBenefits:dG,companySalaries:dE,photosCount:aP,companyJobs:dF,qnaQuestionsLive:55,newsCount:b,postsCount:aF,pollsCount:f},metaObj:{title:"100+ Tech Mahindra Software Developer Interview Questions & Answers | Complete Prep Guide 2025 | AmbitionBox",description:db,canonicalUrl:aI,logo:q,companyId:k,totalInterviewsCount:aH,jobProfileName:h,jobProfileId:g,lastUpdated:da,totalQuestionsCount:194,redirectUrl:a,verdict:a,status:a,noIndex:c,experienceName:a,jobTypeName:a},metaSeoObj:a,companyTabs:[{Name:"About",Title:"Tech Mahindra Overview",Url:"\u002Foverview\u002Ftech-mahindra-overview",DataKeyName:d,iconName:"about",isNotNuxt:e,noFilters:e},{Name:"Reviews",Title:"Tech Mahindra Reviews",Url:"\u002Freviews\u002Ftech-mahindra-reviews",AliasPageName:"companyTagReviews",DataKeyName:"companyReviewsLive",iconName:dI,isNotNuxt:e},{Name:cf,Title:cg,Url:"\u002Fsalaries\u002Ftech-mahindra-salaries",DataKeyName:"companySalaries",iconName:"salaries"},{Name:cR,Title:cS,Url:"\u002Finterviews\u002Ftech-mahindra-interview-questions",DataKeyName:"interviewExperiencesLive",iconName:"interviews"},{Name:"Jobs",Title:"Tech Mahindra Jobs",Url:"\u002Fjobs\u002Ftech-mahindra-jobs-cmp",DataKeyName:"companyJobs",iconName:"jobs"},{Name:"Benefits",Title:"Tech Mahindra Benefits",Url:"\u002Fbenefits\u002Ftech-mahindra-benefits",isNotNuxt:e,DataKeyName:"totalReviewsWithBenefits",iconName:"benefits"},{Name:"Photos",Title:"Tech Mahindra Photos",Url:"\u002Fphotos\u002Ftech-mahindra-photos",DataKeyName:"photosCount",iconName:"photos",noFilters:e},{Name:"Posts",Title:"Tech Mahindra Discussions",Url:"\u002Fdiscussions\u002Ftech-mahindra-discussions",DataKeyName:"postsCount",iconName:dI,isNotNuxt:e}],crowdsourcingOrder:[],isCrowdsourceDataFetched:c,awardsList:[],companyId:a,congratulationCount:{"2021":b,"2022":b},customCompanyInfo:a,companyPhotos:{Pagination:{Total:aP,TotalPages:cd,CurrentPage:f},Photos:[{PhotoId:63130,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FWG1EWkZBVndRTTN3S04xc1BvTXBpZz09",Caption:w,Date:"Mar, 2025",UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63146,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FSXhKT3YrRlVTT3dzVTFORU9KZG1Odz09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63134,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FbmRGaksxRFZqUVdpQ1dZYnNtaUp2Zz09",Caption:w,Date:"Nov, 2024",UserUpload:b,CompanyLocation:d,HelpfulCount:f,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63136,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FVUpXZVhKbHgyV0ljYkdIVEpCeTBndz09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63148,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002Fb0dSQ1dZa0tZR2FsZ0FhOVhTZXNTUT09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63140,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FdnVqR2dBS1RyS1NFWndjRkJuaUlsUT09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63138,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FcmY2RjNDcG1WSWdCSWdjNktZZ0JVdz09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c},{PhotoId:63132,Url:"https:\u002F\u002Fstatic.ambitionbox.com\u002Fapi\u002Fv2\u002Fphoto\u002FSk5ZdXlMZlpMam40dW1NcmRiay9SUT09",Caption:w,Date:L,UserUpload:b,CompanyLocation:d,HelpfulCount:b,IsHighQuality:c,ImageProxyRequired:c}]},locationId:a,fetchingCompanyLisitng:c,departmentId:a,showAds:e,footerStats:{totalReviews:8171982,totalInterviews:617358,totalSalaries:41307122,totalCompanies:1121305,companiesWithInterviews:112615,companiesWithReviews:733362,companiesWithSalaries:856246,totalEmployers:23317},isCompSummaryVideoExpanded:c},designation:{desigInfo:a,desigTabs:a,desigInterviewMeta:a,desigJobsMeta:a,designationId:g},globals:{DOMAIN:aA,CDN:"https:\u002F\u002Fstatic.ambitionbox.com",CLIENT_ID:"462822053404-hphug4pkahqljh2tc96g35at47o4isv2.apps.googleusercontent.com"},user:{user:a,clientId:a,isPageLocked:a,isSalariesLocked:c},loginModal:{isLoginOpen:c,loginProps:a,ubaProps:a,isPersonaliseOpen:c,personaliseProps:a,isOverlayOpen:c,naukriSdkStatus:c,googleSdkStatus:c,customRedirectUrl:d,modalName:a},jobAlertModal:{isVisible:c,isManageAlertVisible:c,jobProfileId:a,jobProfileName:a,userPreferences:{}},appDownloadBSController:{isAppBSOpen:c},bottomSheetController:{isOpen:c,openedTab:[c,c,c,c,c,c,c,c,c,c,c,c]},filerDropdownController:{isDesktopFilterOpen:c,isMultiselectModelFilterOpen:c,openedFilters:[c,c,c,c,c,c,c,c,c,c,c,c]},amboxStats:{amboxStats:{Reviews:"60 Lakh+",InterviewQuestions:"5 Lakh+",Salaries:"2 Crore+",UsersPerMonth:"1 Crore+",Companies:"8 Lakh+",RegisteredCompanies:"9,700",NewCompaniesPerMonth:"400"}},comments:{commentsMap:{"10733040":cF,"10925340":cE,"10985472":cp,"11374358":cQ,"11462900":cL,"11496572":ct,"11728252":cq,"11774858":cx,"11798506":cM,"11915098":cl},reportModal:{open:c,commentId:d,type:d},helpfulIds:{},userCommentsIds:{},onLandL2Comments:a},abusiveWords:{abusiveWordsRegex:d,progressValue:b},qna:{question:d,answer:d,anonymous:c,tags:a,userCredential:a,isEditQuestion:c,userQuestionIds:[],userAnswerIds:[],isAddQuesModalOpen:c,isCredentialModalOpen:c,isReportModalOpen:c,type:"question",questionId:a,answerId:a,deletedAnswerData:{},addAnswerData:a,helpfulMarkedQnaQuestions:[],qnaTags:[],getEditedQuestionTags:a},notifications:{showNotification:c,notificationCount:a,unSeenNotificationCount:a,list:[],ccsUnseenNotificationBulkUbaData:[]},college:{collegeInfo:a,collegeTabs:a,collegeMeta:a,collegeStats:a,helpfulMarkedInterviews:{},ytplayerList:[],tipsData:{round:a,tips:[]},showTipsModal:c},workHistory:{workHistoryData:a},companyInterviews:{scrollToHighlightedQuestion:c,isContentBlockerOpen:c,isDesigPopupOpen:c,popupTimer:a,isSubscribed:c},interestedInWorking:{isLoadingInterestedInWoking:e,isInterestedInWokingWidget:a,isInterestedInWokingModel:a},photoUpload:{utmCampaign:d,openPhotoForm:c,companyName:a},snackbar:{toasts:[]},contributePopup:{show:c,display:c,details:a,company:d,status:"generic",type:"review",sequential:c,isAwardsNudgeVisible:c,timerId:a,nodeExists:e,awardsSnackBarVariant:a},genericIntersectionObserver:{data:[]},indexedDb:{db:b,isDBOpen:c,data:{},dbVersion:a,objectStoreNames:[],otherData:{}},communities:{userDetails:a,trendingCommunities:a,followedCommunities:a},linkNaukriModal:{isVisible:c,userInfo:a},drawer:{showDrawer:c},pageLoad:{pageLoaded:c,isThreadIdle:c},chatbot:{isChatWindowOpen:c,showChatBtn:a,chatHistory:a,questions:a},reviewComments:{commentsMap:{},reportModal:{open:c,commentId:d,type:d},helpfulIds:{},userCommentsIds:{},onLandL2Comments:a},typeaheadMenu:{showTypeaheadMenu:c,isPrefilled:c},followCompany:{utmCampaign:d,openFollowCompanyForm:c,followedCompanies:{}},generic:{interviewFormParnerInfo:{},reviewFormParnerInfo:{}},mediaGallery:{visible:c,galleryAlbums:{},currentMedia:a,activeTab:"all",showCategories:c,loadMoreLoading:c}},serverRendered:e,routePath:aG,config:{_app:{basePath:dJ,assetsPath:dJ,cdnURL:"https:\u002F\u002Fstatic.ambitionbox.com\u002F_nuxt\u002F"},http:{}}}}(null,0,false,"",true,1,4,"Software Developer","software-developer",5,351,"Technical",3,"Tech Mahindra","tech-mahindra",2,"techmahindra",3.7,"text","rounds","HR","Anonymous","Life at Tech Mahindra!","cognizant",3.8,10,250,void 0,"Excellent","3422","algorithms","Algorithms","infosys",3.6,7,"Aptitude Test","amazon","Apr, 2023","fulfilled","Cognizant",3.5,3.3,"Data Structures","data-structures","Software Development","software-development","tcs","Infosys","accenture","wipro","3.7","capgemini","ibm","ltimindtree","persistent-systems","Less than 2 weeks","Selected",200,"Coding Test","Group Discussion","6mo ago",372,"Amazon","3d ago","nagarro","3.6","TCS","Accenture","Wipro","Capgemini",43,"IBM","LTIMindtree","Persistent Systems",35,27,16,39,8,6,"https:\u002F\u002Fwww.ambitionbox.com","Easy","Python","python","Moderate",33,"\u002Finterviews\u002Ftech-mahindra-interview-questions\u002Fsoftware-developer",99,"https:\u002F\u002Fwww.ambitionbox.com\u002Finterviews\u002Ftech-mahindra-interview-questions\u002Fsoftware-developer","1",381,"Nagarro","meesho","globallogic","mr-cooper",70,42,"Consulting, IT Services & Consulting",41,273,44,95,136,483,"hcl-technologies",88,"hcl-technologies-88","HCLTech",422,25,24,14,"Google","google","Genpact","genpact","DXC Technology","dxc-technology","Mphasis","mphasis","HCL Group","hcl","L&T Technology Services","l-and-t-technology-services","eClerx","eclerx","Coforge","coforge","Cyient","cyient","NTT Data","Birlasoft","birlasoft","Kyndryl","kyndryl","Zensar Technologies","zensar-technologies","Tata Elxsi","tata-elxsi","Datamatics Global Services","datamatics-global-services","3i Infotech","HCL Infosystems","hcl-infosystems","Tata Group","tata-group","METRO Global Solutions Center","metro-global-business-services","Tech Data","tech-data",4.1,"Dell R&D Center","dell-r-and-d-center",23,9.5,"Software Engineer","software-engineer",5.5,"Senior Software Engineer","senior-soft-engineer","Technical Lead","technical-lead","Associate Software Engineer","associate-software-engineer",-7,9,"Home","Salaries","Tech Mahindra Salaries","Job Portal","Company Website",13,"Not Selected",{},"communication round","Technical - 1","Technical - 2",{},{},"what-is-the-difference-between-a-list-and-a-tuple-QOYpLvg6","\u003Cp\u003EList is mutable, tuple is immutable in Python.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EList can be modified after creation, tuple cannot.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EList uses square brackets [], tuple uses parentheses ().\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EList is slower than tuple for iteration and indexing.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: list_example = [1, 2, 3], tuple_example = (1, 2, 3)\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E",{},"what-is-oop-in-php-SQGwvZq4","\u003Cp\u003EOOPs in PHP stands for Object-Oriented Programming, a programming paradigm that uses objects and classes to organize code.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EOOPs allows for better code organization and reusability\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKey concepts include classes, objects, inheritance, encapsulation, and polymorphism\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EExample: class Car { public $color; function drive() { echo 'Driving'; }}\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","experienced",{},"how-is-inheritance-used-in-kotlin-MGvIdSb4","\u003Cp\u003EInheritance in Kotlin allows a class to inherit properties and functions from another class.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EIn Kotlin, a class can inherit from another class using the 'open' keyword for the superclass and the 'class' keyword for the subclass.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ESubclasses can override properties and functions of the superclass using the 'override' keyword.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EKotlin does not support multiple inheritance, but a class can implement multiple interfaces.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","why-are-coroutines-used-MGvK5R7y","\u003Cp\u003ECoroutines are used to perform asynchronous tasks without blocking the main thread.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003ECoroutines allow for efficient asynchronous programming by suspending and resuming execution at specific points.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EThey are commonly used in Android development to handle network requests and database operations.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ECoroutines can be used to simplify complex asynchronous code by providing a structured way to manage concurrency.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EThey are lightweight compared to threads, making them a more efficient choice for certain tasks.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","Java","java",{},{},"how-to-write-a-programming-language-Q8PE1314","\u003Cp\u003ETo write a programming language as a software developer, one must understand the syntax, semantics, and design principles of programming languages.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EUnderstand the syntax and grammar rules of the language.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EDefine the semantics of the language, including how statements and expressions are interpreted.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EDesign the language features and constructs based on the intended use cases.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EImplement the language using a compiler or interpreter.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ETest and debug the language implementation to ensure correctness and efficiency.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","how-should-i-learn-to-become-a-software-developer-Q8PGT2Xy","\u003Cp\u003ELearning software development involves studying programming languages, practicing coding, building projects, and staying updated with industry trends.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EStudy programming languages like Java, Python, C++, etc.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EPractice coding regularly on platforms like LeetCode, HackerRank, etc.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EBuild projects to apply your knowledge and gain practical experience.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EStay updated with industry trends by reading blogs, attending workshops, etc.\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","fresher",{},{},"what-is-a-linked-list-PTZoeVTA","\u003Cp\u003EA linked list is a data structure that consists of a sequence of elements, where each element points to the next element in the sequence.\u003C\u002Fp\u003E\u003Cp\u003E\u003C\u002Fp\u003E\u003Cul\u003E\u003Cli\u003E\u003Cp\u003EConsists of nodes where each node contains data and a reference to the next node\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003ECan be singly linked (each node points to the next node) or doubly linked (each node points to the next and previous nodes)\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003Cli\u003E\u003Cp\u003EAllows for efficient insertion and deletion of elements\u003C\u002Fp\u003E\u003C\u002Fli\u003E\u003C\u002Ful\u003E","2-4 weeks",{},"Interviews","Tech Mahindra Interview Questions","Tech Mahindra Software Developer Interview Questions",Array(10),109,94,"2","national-institute-of-technology-nit-warangal","nagpur-university","jb-institute-of-technology-dehradun","anurag-college-of-engineering-hyderabad","2025-04-11 13:46:46","Tech Mahindra Software Developer interview questions and answers ✓ interview rounds and process 2025 ✓ GD topics ✓ test pattern shared by 99 candidates interviewed with Tech Mahindra","Salary","Skill development","Job security","Promotions","Work satisfaction","Company culture","Work-life balance","salary","learning","job-security","appraisal","work-culture","work-life-balance","350","354","9mo ago",5.5555553,373,"114","6d ago","blackrock","4d ago","Meesho","GlobalLogic","Mr Cooper","100001+",37466,4020,269215,475,3767,"100001","reviews","\u002F"));</script><script src="https://static.ambitionbox.com/_nuxt/runtime.c7d12566da604d099c0c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/layouts/headerLayout/f075b844.4eef15faf1aad9658b26.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/AppInstallPopup/ace8d463.e9719384f524436b3d4b.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/header/f075b844.b7e3f7356b28c8c4fcc4.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/typeahead-desktop/f075b844.189489fc405c210b19c0.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/AnimatedPlaceholder/9130463e.dc24061d4fd49e17ebfe.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/526.b97070fa70bbfb51d974.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/519.edbba9246d3e86ab0378.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/HeaderInfoV2/47e8e49c.b6e2e480a942aaf0dc42.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/ab.atoms/f075b844.c142f1b933d581e2172c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/client/f075b844.9ad575a3b44b7523470b.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.companyInterview/d0ae3f07.82a9593c2532b672480c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.companyInterview/ace8d463.825e27dedc913f30b767.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/ab.atoms2/f075b844.990e36348307b9f1713e.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.interviewCont/f075b844.1b14c6c0b88b3f91a6af.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/57.c362d5a3b6f85d11ebd1.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/27.059e58f94824ee6bd91f.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/606.99189bcf002fca0ffc88.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/577.b01bf5dc21bfcfbeaf5a.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/1.f89a977fd1dcb8a70576.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/476.2e10148f2dc8836a66b7.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/19.5f677d65623f4ffa3799.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/538.bdd6e3613b6fc13cdcbf.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/541.3523791c5e1c2f7c7bf7.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/542.cd2edc1ebcad0ca07de7.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/537.3b8783cb3f7f8200eec4.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/112.ad7823a35716b3f6e06a.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/543.e2c0911e063c6c88af06.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/571.794b5955033a9c49271c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/paginator/9430e4e7.9a5d783edf40273630fb.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.interviewCard/11427a88.a5cbf0d02651a27aa971.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/576.78a66875b04b117ea0ad.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/124.6873238a4b5b166cd0a7.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/110.0c6f46bb1f15232cf3e0.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/495.ccb48f533b7ef2c2218b.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/105.f5e3cbb4ccd3c95fffb2.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/skillsCard/b0275800.51895cf40b4cf079a829.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/575.152c05ccfa78c65a9e1e.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.contributeWidget/01e7b97c.3b6fabce8cd09aa1304f.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/12.290c6865faa7ac56da07.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/cs.tk.main/66b35019.ef6bfc2e49d408eecb7f.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/ci.recentlyViewWidget/0b936896.1b57708e08c3ca8d20dc.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/userFeedbackCard/1c6815cb.1aa5d3395f056f4a98d9.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/seoInterlink/10398f5c.35fc8a897a346bd9a237.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/123.0774a21bbcb8c85e1856.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/600.3749bfff88003cd29bbb.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/605.d7ae9c14ce49de3b941c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/29.6e84d1ce2952b59ea2f4.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/smcompcard/ace8d463.0ab726a7d0824a37358d.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.companyInterview/il.explore.more/42832916.5f60f98c210b1c085a73.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/c.comparisonsList/ace8d463.9f2d901b2f9868f736ab.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/BreadCrumbs/313229ea.69f39d3093f01cd7e6dd.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/536.8c095bf6f4a9dae33c00.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/g.Pageloader/19fd1d8e.68897a932311fdfe6699.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/footer/ace8d463.ca3a4cb927365f7aaf3a.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/253ae210.49504ebd65d436fe0504.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/d939e436.d88947ec012f0acbe19e.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/93acefaf.59bc9bebf172fbef46ce.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/678f84af.ddb9c17774989820268c.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/fdc6512a.641ff738c946080216d3.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commons/app/90405b64.4f9f4875d8a0d3138cc0.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/commonutils/f075b844.a20080dcea1ac33fb39a.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/styles/19e9466a.230f3ea7fb251f8e7c69.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/vendors/app/7274e1de.072fa08f3725d44ff9ca.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/vendors/app/b58f7129.93ca8df08977b8db2fa9.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/app/f69643ec.7305e6210979e5401e28.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/app/01e7b97c.8931b9f38b6cfcb9c972.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/app/ab6d71da.485fb115ed94cd243f6b.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/app/95a964c1.db42dfce79dfe3417ace.js" defer></script><script src="https://static.ambitionbox.com/_nuxt/app/585c4432.3a55ee71c43877a98ac5.js" defer></script><script data-n-head="ssr" src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-lazyload/12.1.0/lazyload.min.js" data-body="true" defer crossorigin=""></script> </body> </html>