Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Tech Mahindra Team. If you also belong to the team, you can get access from here

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tech Mahindra Interview Questions and Answers

Updated 30 Jul 2025
Popular Designations

2k Interview questions

A Web Development Intern was asked 5d ago
Q. What is loops
Ans. 

Loops are programming constructs that repeat a block of code multiple times based on a condition.

  • Types of loops: for, while, and do-while.

  • For loop example: for (let i = 0; i < 5; i++) { console.log(i); }

  • While loop example: let i = 0; while (i < 5) { console.log(i); i++; }

  • Do-while loop example: let i = 0; do { console.log(i); i++; } while (i < 5);

  • Loops help in automating repetitive tasks and iterating over...

View all Web Development Intern interview questions
A Web Development Intern was asked 5d ago
Q. What is object-oriented programming?
Ans. 

In JavaScript, 'obj' typically refers to an object, a fundamental data structure that holds key-value pairs.

  • Objects are created using curly braces: const obj = {};

  • They can hold various data types: const person = { name: 'Alice', age: 25 };

  • Access properties using dot notation: console.log(person.name); // 'Alice'

  • Use bracket notation for dynamic keys: const key = 'age'; console.log(person[key]); // 25

  • Objects can als...

View all Web Development Intern interview questions
A Web Development Intern was asked 5d ago
Q. What is a function?
Ans. 

A function is a reusable block of code that performs a specific task in programming.

  • Functions can take inputs, known as parameters, and return outputs. Example: function add(a, b) { return a + b; }

  • They help in organizing code, making it modular and easier to maintain.

  • Functions can be defined using function declarations or function expressions.

  • Example of a function expression: const multiply = function(x, y) { retu...

View all Web Development Intern interview questions
A Web Development Intern was asked 5d ago
Q. What is an array?
Ans. 

An array is a data structure that stores a collection of elements, typically of the same type, in a contiguous memory location.

  • Arrays can hold multiple values in a single variable, e.g., let fruits = ['apple', 'banana', 'cherry'];

  • They are zero-indexed, meaning the first element is accessed with index 0, e.g., fruits[0] returns 'apple';

  • Arrays can be of fixed or dynamic size, e.g., in Java, int[] numbers = new int[5...

View all Web Development Intern interview questions

What people are saying about Tech Mahindra

View All
a senior software engineer
2w (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about Tech Mahindra?
Ask anonymously on communities.
A Web Development Intern was asked 5d ago
Q. What is React JS?
Ans. 

React.js is a popular JavaScript library for building user interfaces, particularly single-page applications, using a component-based architecture.

  • Component-Based: React allows developers to create reusable UI components, making code more modular and maintainable.

  • Virtual DOM: React uses a virtual representation of the DOM to optimize rendering and improve performance.

  • Unidirectional Data Flow: Data in React flows i...

View all Web Development Intern interview questions
A Web Development Intern was asked 5d ago
Q. What is Node.js?
Ans. 

Node.js is a JavaScript runtime built on Chrome's V8 engine, enabling server-side scripting and building scalable network applications.

  • Node.js uses an event-driven, non-blocking I/O model, making it efficient and suitable for I/O-heavy applications.

  • It allows developers to use JavaScript on both the client and server sides, promoting code reuse.

  • Node.js has a rich ecosystem of libraries and frameworks, such as Expre...

View all Web Development Intern interview questions

Tech Mahindra HR Interview Questions

662 questions and answers

Q. Tell me about yourself and your experience relevant to this role
Q. How do you handle challenging situations while working in a team?
Q. Why did you decide to join this position?
🔥 Asked by recruiter 2 times
A Web Development Intern was asked 5d ago
Q. What is CSS?
Ans. 

CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML.

  • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

  • It allows for responsive design, enabling websites to adapt to different screen sizes (e.g., using media queries).

  • CSS can be applied inline, embedded in the HTML document, or linked as an external stylesheet.

  • Examp...

View all Web Development Intern interview questions
Are these interview questions helpful?
A Web Development Intern was asked 5d ago
Q. What is HTML?
Ans. 

HTML (HyperText Markup Language) is the standard language for creating web pages and web applications.

  • HTML uses tags to structure content, e.g., <h1> for headings, <p> for paragraphs.

  • It allows embedding multimedia elements like images (<img>) and videos (<video>).

  • HTML forms (<form>) enable user input, with elements like text fields (<input>) and buttons (<button>).

  • HTML doc...

View all Web Development Intern interview questions
A Web Development Intern was asked 5d ago
Q. What is JavaScript?
Ans. 

JavaScript is a versatile, high-level programming language primarily used for web development to create interactive and dynamic web pages.

  • JavaScript is an interpreted language, meaning it runs directly in the browser without needing compilation.

  • It supports event-driven programming, allowing developers to create responsive user interfaces. Example: handling button clicks.

  • JavaScript can manipulate the Document Objec...

View all Web Development Intern interview questions
A Team Lead was asked 1w ago
Q. What do you know about shrinkage?
Ans. 

Shrinkage refers to the loss of inventory or resources, often due to theft, damage, or errors in accounting.

  • Shrinkage can occur in retail due to shoplifting; for example, a store may lose 1-2% of its inventory annually.

  • In manufacturing, shrinkage might refer to material loss during production, such as waste from cutting processes.

  • In the context of workforce management, shrinkage indicates the percentage of time em...

View all Team Lead interview questions

Tech Mahindra Interview Experiences

4.2k interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Html css JavaScript
  • Q2. React js node js
  • Q3. Web page web development web designing
  • Q4. Basic computer questions
  • Q5. Introduction best
  • Q6. What is the javascript
  • Ans. 

    JavaScript is a versatile, high-level programming language primarily used for web development to create interactive and dynamic web pages.

    • JavaScript is an interpreted language, meaning it runs directly in the browser without needing compilation.

    • It supports event-driven programming, allowing developers to create responsive user interfaces. Example: handling button clicks.

    • JavaScript can manipulate the Document Object Mod...

  • Answered by AI
  • Q7. What is the react js
  • Ans. 

    React.js is a popular JavaScript library for building user interfaces, particularly single-page applications, using a component-based architecture.

    • Component-Based: React allows developers to create reusable UI components, making code more modular and maintainable.

    • Virtual DOM: React uses a virtual representation of the DOM to optimize rendering and improve performance.

    • Unidirectional Data Flow: Data in React flows in one...

  • Answered by AI
  • Q8. What's node js
  • Ans. 

    Node.js is a JavaScript runtime built on Chrome's V8 engine, enabling server-side scripting and building scalable network applications.

    • Node.js uses an event-driven, non-blocking I/O model, making it efficient and suitable for I/O-heavy applications.

    • It allows developers to use JavaScript on both the client and server sides, promoting code reuse.

    • Node.js has a rich ecosystem of libraries and frameworks, such as Express.js...

  • Answered by AI
  • Q9. What is css
  • Ans. 

    CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML.

    • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

    • It allows for responsive design, enabling websites to adapt to different screen sizes (e.g., using media queries).

    • CSS can be applied inline, embedded in the HTML document, or linked as an external stylesheet.

    • Example of...

  • Answered by AI
  • Q10. What's is html
  • Ans. 

    HTML (HyperText Markup Language) is the standard language for creating web pages and web applications.

    • HTML uses tags to structure content, e.g., <h1> for headings, <p> for paragraphs.

    • It allows embedding multimedia elements like images (<img>) and videos (<video>).

    • HTML forms (<form>) enable user input, with elements like text fields (<input>) and buttons (<button>).

    • HTML document...

  • Answered by AI
  • Q11. What is loops
  • Ans. 

    Loops are programming constructs that repeat a block of code multiple times based on a condition.

    • Types of loops: for, while, and do-while.

    • For loop example: for (let i = 0; i < 5; i++) { console.log(i); }

    • While loop example: let i = 0; while (i < 5) { console.log(i); i++; }

    • Do-while loop example: let i = 0; do { console.log(i); i++; } while (i < 5);

    • Loops help in automating repetitive tasks and iterating over data...

  • Answered by AI
  • Q12. What is obj
  • Ans. 

    In JavaScript, 'obj' typically refers to an object, a fundamental data structure that holds key-value pairs.

    • Objects are created using curly braces: const obj = {};

    • They can hold various data types: const person = { name: 'Alice', age: 25 };

    • Access properties using dot notation: console.log(person.name); // 'Alice'

    • Use bracket notation for dynamic keys: const key = 'age'; console.log(person[key]); // 25

    • Objects can also con...

  • Answered by AI
  • Q13. What is function
  • Ans. 

    A function is a reusable block of code that performs a specific task in programming.

    • Functions can take inputs, known as parameters, and return outputs. Example: function add(a, b) { return a + b; }

    • They help in organizing code, making it modular and easier to maintain.

    • Functions can be defined using function declarations or function expressions.

    • Example of a function expression: const multiply = function(x, y) { return x ...

  • Answered by AI
  • Q14. What's is array
  • Ans. 

    An array is a data structure that stores a collection of elements, typically of the same type, in a contiguous memory location.

    • Arrays can hold multiple values in a single variable, e.g., let fruits = ['apple', 'banana', 'cherry'];

    • They are zero-indexed, meaning the first element is accessed with index 0, e.g., fruits[0] returns 'apple';

    • Arrays can be of fixed or dynamic size, e.g., in Java, int[] numbers = new int[5]; cr...

  • Answered by AI
  • Q15. What is controlled
  • Ans. 

    Controlled components in web development manage form data through React state, ensuring predictable UI behavior.

    • Controlled components use state to manage form inputs, e.g., <input value={this.state.value} onChange={this.handleChange} />.

    • They provide a single source of truth for form data, making it easier to validate and manipulate inputs.

    • Controlled components can be reset or modified programmatically, enhancing ...

  • Answered by AI
  • Q16. What's is css
  • Ans. 

    CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of HTML documents.

    • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

    • It allows for responsive design, adapting layouts to different screen sizes (e.g., using media queries).

    • CSS can be applied inline, embedded in the HTML, or linked as an external stylesheet.

    • Example of a CSS rule: 'h1 { color: blue; font-s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My best
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What makes you the ideal candidate for this position?
  • Ans. 

    I have a strong background in customer service, excellent communication skills, and a passion for helping customers.

    • Extensive experience in customer service roles

    • Excellent communication skills

    • Strong problem-solving abilities

    • Passion for helping customers

    • Proven track record of resolving customer issues efficiently

  • Answered by AI
Round 2 - Verscent 

(1 Question)

  • Q1. They will Voice test
Round 3 - Client Interview 

(1 Question)

  • Q1. Tell me about your self, what are languages you know, what do you know about phone pe
  • Ans. 

    I am fluent in English, Hindi, and Spanish. I have knowledge about PhonePe's services and features.

    • Fluent in English, Hindi, and Spanish

    • Knowledge about PhonePe's services and features

    • Experience in customer service roles

  • Answered by AI
Round 4 - Typing Test 

(1 Question)

  • Q1. They will check our typing test

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not feel nervous; instead, be confident. If you experience fear and anxiety, you may be eliminated in the first round.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(15 Questions)

  • Q1. What is split horison? How can we resolve it?
  • Ans. 

    Split horizon is a technique used in computer networking to prevent routing loops by not advertising routes back to the same interface they were learned from.

    • Split horizon is used in distance-vector routing protocols like RIP to prevent routing loops.

    • It works by not advertising routes back to the same interface they were learned from.

    • Split horizon with poison reverse takes this a step further by advertising the route w...

  • Answered by AI
  • Q2. What is BGP? How BGP works?
  • Ans. 

    BGP stands for Border Gateway Protocol, used to exchange routing information between different networks.

    • BGP is an exterior gateway protocol used to make routing decisions on the internet.

    • It operates by exchanging routing information between different autonomous systems (AS).

    • BGP uses TCP port 179 for communication.

    • BGP routers maintain a table of IP prefixes and their paths to reach them.

    • BGP can be configured to influenc...

  • Answered by AI
  • Q3. What are the type of BGP and their AD value?
  • Q4. What is routing protocol? What are the types of routing protocol?
  • Ans. 

    Routing protocol is a set of rules used by routers to determine the best path for data packets to travel.

    • Routing protocols help routers communicate with each other to dynamically update routing tables.

    • Types of routing protocols include distance-vector (e.g. RIP), link-state (e.g. OSPF), and hybrid (e.g. EIGRP).

    • Distance-vector protocols determine the best path based on hop count.

    • Link-state protocols use a more complex a...

  • Answered by AI
  • Q5. What is ospf?
  • Q6. How do we prevent loop avoidance in BGP?
  • Ans. 

    Preventing loop avoidance in BGP involves using loop prevention mechanisms like AS Path and Route Reflectors.

    • Use AS Path attribute to prevent loops by tracking the path a route has taken through AS numbers.

    • Implement Route Reflectors to avoid loops in BGP by controlling the route propagation within a cluster.

    • Utilize BGP Confederations to divide the network into smaller autonomous systems to prevent loops.

    • Regularly monit...

  • Answered by AI
  • Q7. What is OSI model? What are the layers of OSI model?
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It helps in understanding how data is transferred from one computer to another over a network.

    • The seven layers of OSI model are: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has speci...

  • Answered by AI
  • Q8. How does tracerout works?
  • Q9. If we see "*****" in tracerout, what it means?
  • Ans. 

    The presence of '*****' in a traceroute indicates that the router is blocking the ICMP packets used by traceroute.

    • The '*****' indicates that the router is not responding to the ICMP packets sent by the traceroute tool.

    • This could be due to the router being configured to block ICMP traffic for security reasons.

    • It can also be caused by a firewall or network filtering rules blocking the ICMP packets.

    • In some cases, the '***...

  • Answered by AI
  • Q10. What are the states in BGP?
  • Ans. 

    BGP states include Idle, Connect, Active, OpenSent, OpenConfirm, Established.

    • Idle - Initial state when BGP is not yet established

    • Connect - Attempting to establish a TCP connection

    • Active - Waiting for a TCP connection to be completed

    • OpenSent - Sent an Open message to peer

    • OpenConfirm - Received an Open message and waiting for confirmation

    • Established - BGP peers are fully established and can exchange routing information

  • Answered by AI
  • Q11. If there is a non tech guys on site to replace faulty router with new router, how do you configure the new router?
  • Ans. 

    The new router can be configured remotely using a laptop or mobile device with access to the network.

    • Access the router's web interface by entering its IP address in a web browser

    • Login using default credentials or credentials provided by the company

    • Configure basic settings such as SSID, password, and security settings

    • Update firmware if necessary

    • Test the connection to ensure it is working properly

  • Answered by AI
  • Q12. What are CE and PE routers?
  • Ans. 

    CE and PE routers are types of routers used in MPLS networks. CE routers connect to customer networks while PE routers connect to provider networks.

    • CE routers (Customer Edge) connect to customer networks and are responsible for exchanging routes with customer devices.

    • PE routers (Provider Edge) connect to provider networks and are responsible for exchanging routes with other PE routers in the MPLS network.

    • CE routers are...

  • Answered by AI
  • Q13. What is the command to assign an IP address on Juniper router interface?
  • Ans. 

    The command to assign an IP address on a Juniper router interface is 'set interface <interface_name> unit <unit_number> family inet address <ip_address/mask>'

    • Use the 'set' command to configure the interface

    • Specify the interface name and unit number

    • Use the 'family inet' statement to configure an IPv4 address

    • Specify the IP address and subnet mask

  • Answered by AI
  • Q14. What are the parameters should match in BGP neighbourship?
  • Ans. 

    Parameters for BGP neighbourship include AS number, IP address, subnet mask, and BGP version.

    • AS number must match on both neighbors

    • IP address must be reachable between neighbors

    • Subnet mask should be the same on both neighbors

    • BGP version should be compatible between neighbors

  • Answered by AI
  • Q15. What is tftp?
  • Ans. 

    tftp stands for Trivial File Transfer Protocol, a simple protocol used for transferring files over a network.

    • tftp is a lightweight protocol used for transferring files between devices on a network.

    • It operates on UDP port 69.

    • tftp does not require user authentication, making it less secure compared to FTP.

    • It is commonly used for booting devices over a network, such as in diskless workstations or routers.

    • An example of tft...

  • Answered by AI
Round 2 - Technical 

(8 Questions)

  • Q1. What is loop avoidance mechanism in BGP?
  • Ans. 

    Loop avoidance mechanism in BGP prevents routing loops by using loop prevention mechanisms like AS path attribute and route reflectors.

    • BGP uses AS path attribute to prevent routing loops by not accepting routes with its own AS number in the path.

    • Route reflectors are used in BGP to avoid loops in route propagation within a cluster of routers.

    • BGP Confederations can also be used to prevent loops by dividing the AS into sm...

  • Answered by AI
  • Q2. How tracerout works? What is source and destination IP?
  • Ans. 

    Traceroute is a network diagnostic tool used to track the path packets take from source to destination IP.

    • Traceroute sends packets with increasing TTL values to elicit ICMP Time Exceeded responses from routers along the path.

    • The source IP is the IP address of the device initiating the traceroute, while the destination IP is the IP address of the target device.

    • Traceroute displays the IP addresses of the routers in the p...

  • Answered by AI
  • Q3. What is public IP and private IP?
  • Q4. How can we configure and a router with support of non tech guy onsite?
  • Ans. 

    To configure a router with support of a non tech guy onsite, provide step-by-step instructions and visual aids.

    • Create a simple, easy-to-follow guide with step-by-step instructions.

    • Use visual aids such as diagrams or videos to demonstrate the process.

    • Provide clear explanations of each step and troubleshoot common issues.

    • Offer remote support or a helpline for additional assistance if needed.

  • Answered by AI
  • Q5. What is firewall?
  • Q6. What are the difference between router and switch?
  • Ans. 

    Routers connect multiple networks together while switches connect devices within a single network.

    • Routers operate at the network layer (Layer 3) of the OSI model, while switches operate at the data link layer (Layer 2).

    • Routers use IP addresses to forward data between networks, while switches use MAC addresses to forward data within a network.

    • Routers can determine the best path for data to travel between networks, while...

  • Answered by AI
  • Q7. What is mpls?
  • Q8. How ftp and tftp works?
  • Ans. 

    FTP and TFTP are protocols used for transferring files over a network.

    • FTP (File Transfer Protocol) is a standard network protocol used to transfer files from one host to another over a TCP-based network, such as the internet.

    • TFTP (Trivial File Transfer Protocol) is a simpler version of FTP that uses UDP instead of TCP for file transfer.

    • FTP requires authentication (username and password) for access, while TFTP does not ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What is back office ? What is front office ? What is defination of BPO ? What non voice process ?
  • Q2. Voice process call centre are the same ? What will you join the voice process ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do that job

Process Associate Interview Questions & Answers

user image NIRUPAM NAYAK

posted on 26 Jul 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. Can you tell me about yourself?
  • Q2. Why did you decide to join this position?
  • Ans. 

    I chose this position to leverage my skills in process management and contribute to a dynamic team focused on efficiency and improvement.

    • I am passionate about optimizing processes, which aligns with the core responsibilities of a Process Associate.

    • This role offers the opportunity to work in a collaborative environment, enhancing my teamwork skills.

    • I am eager to apply my analytical skills to identify areas for improveme...

  • Answered by AI
  • Q3. Why did you leave your previous company?
  • Ans. 

    I left my previous company to seek new challenges and opportunities for professional growth in a dynamic environment.

    • I was looking for a role that offered more opportunities for advancement, as my previous position had limited growth potential.

    • I wanted to work in a more collaborative environment, where teamwork and innovation were encouraged.

    • I sought to expand my skill set and take on new responsibilities that aligned ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For Tech bg- Get updated with Latest technologies like AI PYTHON SAP etc...and get into right job . For Non- tech ,i have no such advice, just grow the communication skill-the only skill required for Non tech bg candidates.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. What is DHCP and how many type of DHCP and please explain how to work DHCP DORA Process ?
  • Ans. 

    DHCP is a network protocol that assigns IP addresses to devices on a network. There are two types of DHCP: DHCPv4 and DHCPv6.

    • DHCP stands for Dynamic Host Configuration Protocol.

    • DHCPv4 is used for assigning IPv4 addresses, while DHCPv6 is used for assigning IPv6 addresses.

    • DHCP DORA process stands for Discover, Offer, Request, Acknowledge.

    • Discover: Client broadcasts a DHCP Discover message to find available DHCP servers.

    • ...

  • Answered by AI
  • Q2. What is OU and how to configure and Please Explain ADC ?
  • Ans. 

    OU stands for Organizational Unit, used to organize objects within a domain. ADC stands for Active Directory Connector, used to synchronize data between on-premises AD and Azure AD.

    • OU is a container within a domain used to organize objects like users, groups, and computers.

    • OU helps in delegating administrative tasks and applying Group Policies.

    • Example: Sales department can have its own OU with specific users and polici...

  • Answered by AI
  • Q3. What is APIPA and how to work and what is APIPA Range.
  • Ans. 

    APIPA stands for Automatic Private IP Addressing, a feature in Windows that automatically assigns IP addresses to computers when DHCP server is not available.

    • APIPA is a feature in Windows operating systems that automatically assigns IP addresses in the range of 169.254.0.1 to 169.254.255.254 when a DHCP server is not available.

    • It is commonly used in small home or office networks where a DHCP server is not present.

    • APIPA...

  • Answered by AI
  • Q4. Please explain OSPF and BGP ?
  • Ans. 

    OSPF and BGP are routing protocols used in networking to determine the best path for data packets to travel.

    • OSPF (Open Shortest Path First) is an interior gateway protocol used to exchange routing information within an autonomous system.

    • BGP (Border Gateway Protocol) is an exterior gateway protocol used to exchange routing information between different autonomous systems.

    • OSPF uses link-state routing algorithm to calcula...

  • Answered by AI
  • Q5. What is OSI layer and please explain all Layer ?
  • Ans. 

    The OSI (Open Systems Interconnection) model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven distinct layers.

    • Layer 1 - Physical layer: Deals with physical connections and transmission of raw data over a physical medium (e.g. cables, fibers).

    • Layer 2 - Data Link layer: Responsible for node-to-node communication, error detection, and flow control (e.g. Ethern...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What tasks do you perform using Microsoft Excel?
  • Q2. What types of tasks do you perform using Excel?
  • Q3. What types of using computer

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you for sharing my tips.

Associate Interview Questions & Answers

user image Anonymous

posted on 28 Jul 2025

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. How do you handle challenging situations while working in a team?
  • Ans. 

    I approach challenging team situations with open communication, empathy, and a focus on collaborative problem-solving.

    • Maintain open communication: I encourage team members to express their concerns and ideas freely, fostering a supportive environment.

    • Empathy and understanding: I try to understand different perspectives, which helps in resolving conflicts amicably. For example, during a project, I listened to a teammate...

  • Answered by AI
  • Q2. Tell me about yourself and your experience relevant to this role
  • Ans. 

    I am a dedicated professional with diverse experience in project management and team collaboration, eager to contribute to your team.

    • Over 5 years of experience in project management, successfully leading cross-functional teams to deliver projects on time and within budget.

    • Managed a team of 10 in a software development project, resulting in a 30% increase in efficiency through improved processes.

    • Skilled in using project...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Match 14 characters before @ , given an url
  • Ans. 

    Extract the 14 characters before @ in a given URL

    • Use string manipulation to extract characters before @ symbol

    • Consider edge cases like no @ symbol or less than 14 characters before @

    • Handle special characters like %20 or %40

  • Answered by AI
  • Q2. Match Atleast one capital, once small case, 1 digit and 1 special character using regex?
  • Ans. 

    Regex pattern to match at least one capital letter, one small case letter, one digit, and one special character.

    • Use the regex pattern: (?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[^A-Za-z0-9])

    • Example: Password@123

  • Answered by AI
  • Q3. Given a string ="This is my interview for QA engineer"; write code to give an output of each word with vowel count?
  • Ans. 

    Code to output each word with vowel count in a given string.

    • Split the string into words using space as delimiter

    • Iterate through each word and count the number of vowels

    • Store the word and its vowel count in an array of strings

  • Answered by AI
  • Q4. Given a 2X2 Matrix, find the maximum diagonal sum?
  • Ans. 

    To find the maximum diagonal sum in a 2X2 Matrix, sum the elements of the main diagonal and the opposite diagonal.

    • Sum the elements of the main diagonal (top left to bottom right) and the opposite diagonal (top right to bottom left).

    • Compare the sums of both diagonals and return the maximum sum.

    • Example: For a 2X2 Matrix [[1, 2], [3, 4]], the main diagonal sum is 1+4=5 and the opposite diagonal sum is 2+3=5. The maximum d...

  • Answered by AI
  • Q5. How do you find the selected option text from dropdown in selenium?
  • Q6. Given a dropdown contains options with duplicates. Find those duplicates along with its occurrence/frequency?
  • Ans. 

    Find duplicates in a dropdown along with their occurrence/frequency.

    • Iterate through the dropdown options and store each option in a hashmap with its frequency.

    • Identify options with frequency greater than 1 as duplicates.

    • Return the duplicates along with their occurrence/frequency.

  • Answered by AI
  • Q7. How do you resolve merge conflicts in git?
  • Q8. How to bring specific commit changes to your branch?
  • Ans. 

    Use git cherry-pick command to bring specific commit changes to your branch.

    • Identify the commit hash of the specific changes you want to bring to your branch.

    • Checkout to the branch where you want to apply the changes.

    • Use 'git cherry-pick <commit-hash>' command to apply the specific commit changes to your branch.

  • Answered by AI
  • Q9. How to switch to frame and come out of it in selenium?
  • Ans. 

    To switch to a frame in Selenium, use driver.switchTo().frame() method. To come out of a frame, use driver.switchTo().defaultContent() method.

    • Use driver.switchTo().frame() method to switch to a frame

    • Use driver.switchTo().defaultContent() method to come out of a frame

    • Example: driver.switchTo().frame("frameName");

    • Example: driver.switchTo().defaultContent();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing any activity(remove/add/update resume, change skills etc..) in naukri/linkedin so that i catches recruiters attention
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. What is your understanding of quality control?
  • Q2. What are the methods used for quality measurement?

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra interview?
Tech Mahindra interview process usually has 2-3 rounds. The most common rounds in the Tech Mahindra interview process are HR, Technical and Resume Shortlist.
How to prepare for Tech Mahindra interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tech Mahindra. The most common topics and skills that interviewers at Tech Mahindra expect are Customer Service, customer support, voice process, international bpo and customer care.
What are the top questions asked in Tech Mahindra interview?

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

  1. Tell me something about yourself. Define encapsulation. What is inheritance. ...read more
  2. As a interview manage question like how to manage any argent piece of wo...read more
  3. If the customer is not satisfied with your answer so what will you do to satisf...read more
What are the most common questions asked in Tech Mahindra HR round?

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

  1. What are your strengths and weakness...read more
  2. Why should we hire y...read more
  3. What is your family backgrou...read more
How long is the Tech Mahindra interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 3.6k interview experiences

Difficulty level

Easy 31%
Moderate 62%
Hard 6%

Duration

Less than 2 weeks 76%
2-4 weeks 16%
4-6 weeks 4%
6-8 weeks 1%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.2k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 8k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.5k Interviews
LTIMindtree Interview Questions
3.7
 • 3.1k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
View all

Tech Mahindra Reviews and Ratings

based on 38.9k reviews

3.5/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.0

Salary

3.4

Job security

3.3

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 38.9k Reviews and Ratings
Uipath Developer

Hyderabad / Secunderabad,

Delhi/Ncr

+1

3-6 Yrs

₹ 8-11 LPA

Explore more jobs
Software Engineer
26.7k salaries
unlock blur

₹3.7 L/yr - ₹9.2 L/yr

Senior Software Engineer
22.6k salaries
unlock blur

₹9 L/yr - ₹18.6 L/yr

Technical Lead
12.4k salaries
unlock blur

₹17 L/yr - ₹30 L/yr

Associate Software Engineer
6.2k salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Team Lead
5.3k salaries
unlock blur

₹6.5 L/yr - ₹17.9 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.6
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare
write
Share an Interview