Upload Button Icon Add office photos
Engaged Employer

i

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

Tech Mahindra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tech Mahindra Senior Test Engineer Interview Questions, Process, and Tips

Updated 28 Jan 2025

Top Tech Mahindra Senior Test Engineer Interview Questions and Answers

  • Q1. What are Java Collections you have used in your Project ?
  • Q2. How you can reslove merge conflicts in git ? Share your experience ?
  • Q3. 2.WAP to provide String without duplicates.(Each character repeated only once) eg: "Hello World" => "Helo Wrd"; Hint:Use Set (Linked hashset)
View all 16 questions

Tech Mahindra Senior Test Engineer Interview Experiences

18 interviews found

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

(1 Question)

  • Q1. Query to find the sum of price per product name for last month
  • Ans. 

    Use SQL query with GROUP BY clause to find sum of price per product name for last month

    • Use SQL query with GROUP BY clause to group by product name

    • Filter the data for last month using WHERE clause

    • Sum the price column for each product name

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Test technique's and methodology
  • Ans. 

    Test techniques and methodologies are essential for ensuring thorough testing of software applications.

    • Test techniques refer to the approach or strategy used to design and execute tests, such as boundary value analysis, equivalence partitioning, and exploratory testing.

    • Test methodologies are the overall process or framework for managing testing activities, such as Agile, Waterfall, and DevOps.

    • It is important for a Seni...

  • Answered by AI
  • Q2. What is integration testing
  • Ans. 

    Integration testing is a type of testing where individual units are combined and tested as a group to ensure they work together correctly.

    • Integration testing verifies the interactions between different components/modules of a system.

    • It helps in detecting issues related to communication between units, data flow, and interfaces.

    • Examples include testing the integration of a database with a web application, or testing the ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Testing life cycle
  • Q2. Agile methodology

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Skills evaluated in this interview

Senior Test Engineer Interview Questions Asked at Other Companies

asked in Sapiens
Q1. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q2. What should be done when a defect is found in production?
asked in LTIMindtree
Q3. How do you performed incrimental load in your project?
asked in LTIMindtree
Q4. What is meant by regression and retesting?
asked in CGI Group
Q5. What is the difference between CHAR and VARCHAR2 data types in SQ ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Mobile testing concepts for Android
  • Ans. 

    Mobile testing concepts for Android involve testing on various devices, OS versions, screen sizes, and network conditions.

    • Testing on different Android devices to ensure compatibility

    • Testing on various OS versions to check for compatibility and performance

    • Testing on different screen sizes to ensure proper layout and functionality

    • Testing under different network conditions to assess performance and reliability

  • Answered by AI
  • Q2. Automation concepts for iOS
  • Ans. 

    Automation concepts for iOS involve using tools like Appium, XCUITest, and XCTest to automate testing of iOS applications.

    • Use Appium for cross-platform testing of iOS apps

    • XCUITest is Apple's native UI testing framework for iOS apps

    • XCTest is Apple's unit testing framework for iOS apps

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Expectations of salary
  • Q2. What are you looking for in the organization

Skills evaluated in this interview

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

(1 Question)

  • Q1. Manual Testing related questions

Tech Mahindra interview questions for designations

 Test Engineer

 (22)

 Senior Automation Test Engineer

 (1)

 Automation Test Engineer

 (7)

 Manual Test Engineer

 (5)

 Associate Test Engineer

 (3)

 Functional Test Engineer

 (1)

 ETL Test Engineer

 (1)

 Associate Software Test Engineer

 (2)

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

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

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

(9 Questions)

  • Q1. Explain about your Framework ?
  • Ans. 

    My framework is a combination of tools, libraries, coding standards, and guidelines used for automation testing.

    • My framework is based on the Page Object Model design pattern.

    • It uses Selenium WebDriver for browser automation.

    • It includes test data management using Excel or CSV files.

    • It has reporting capabilities using tools like ExtentReports or Allure.

    • It supports parallel execution of test cases using TestNG or JUnit.

  • Answered by AI
  • Q2. What your roles and responsibilities in your Project ? What are sprint ceremonies happening in your Agile? X path assignment given(Prepare well on CSS and X path ) without tools ? What are Interfaces an...
  • Q3. Java OOPS concepts Java Coding: 1.W.A.P to Reverse the given String ?(Program)
  • Ans. String s="WelCome"; String rev=""; int n=s.length(); for(int i=n-1;i>=0; i--){ rev=rev+s.charAt(i); } System.out.println(rev);
  • Answered Anonymously
  • Q4. 2.WAP to provide String without duplicates.(Each character repeated only once) eg: "Hello World" => "Helo Wrd"; Hint:Use Set (Linked hashset)
  • Ans. 

    The program removes duplicates from a given string using a Set data structure.

    • Create a LinkedHashSet to maintain the order of characters while removing duplicates

    • Iterate through each character in the input string and add it to the set

    • Convert the set back to a string and return the result

  • Answered by AI
  • Q5. What are Java Collections you have used in your Project ?
  • Ans. 

    I have used Java Collections such as ArrayList, HashMap, and HashSet in my project.

    • ArrayList: Used to store and manipulate a list of elements.

    • HashMap: Used to store key-value pairs for efficient retrieval.

    • HashSet: Used to store unique elements without duplicates.

  • Answered by AI
  • Q6. For File uploads how can you handle in selenium ?
  • Ans. 

    File uploads in Selenium can be handled using the sendKeys() method to input the file path.

    • Use the sendKeys() method to input the file path in the file upload field

    • Make sure the file path is correct and accessible

    • Verify the file upload by checking for the presence of the uploaded file on the page

  • Answered by AI
  • Q7. Asked about Defect life Cycle High seviority and low priority ? Low Priority and High seviority ? Medium priority bugs ?
  • Q8. How you can reslove merge conflicts in git ? Share your experience ?
  • Ans. 

    Resolve merge conflicts in git by using git commands and tools.

    • Use 'git status' to identify conflicted files

    • Open conflicted file(s) in text editor and resolve conflicts manually

    • Use 'git add' to stage resolved files

    • Commit changes using 'git commit'

    • Use 'git merge --abort' to abort merge if needed

  • Answered by AI
  • Q9. Git comands what you have used
  • Ans. 

    Various Git commands used for version control and collaboration

    • git clone: to clone a repository from a remote server

    • git add: to stage changes for commit

    • git commit: to save changes to the local repository

    • git push: to push changes to a remote repository

    • git pull: to fetch and merge changes from a remote repository

    • git branch: to create, list, delete, or switch branches

    • git merge: to merge changes from one branch into anothe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared well on Xpath and basics ?

java Programing concepts ?( I didn't find logic at the time of interview for set question)

Manual testing concepts ?

Git and Build tools ?

Ready with Editor or any Java Compiler Online(They can ask you regarding programing)

Skills evaluated in this interview

Get interview-ready with Top Tech Mahindra Interview Questions

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview with selenium
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. TestNG related questions Real time
Round 2 - Technical 

(1 Question)

  • Q1. Java related to frameworks
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and location discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus at your Resume technical knowledge
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. How much is your experience
  • Ans. 

    I have 8 years of experience as a Senior Test Engineer.

    • I have worked in the software testing industry for 8 years.

    • I have experience in designing and executing test cases.

    • I have expertise in test automation using tools like Selenium.

    • I have worked on various projects and have experience in different testing methodologies.

    • I have strong problem-solving and analytical skills.

    • I have experience in leading and mentoring junior

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Related to Automation testing
  • Q2. Find xpath,design pom classes,test classes,etc.
  • Ans. 

    To find xpath, design POM classes and test classes for Senior Test Engineer role.

    • Use browser developer tools to inspect elements and find xpath

    • Design POM classes to represent web pages and their elements

    • Create test classes to write test cases and execute them

    • Use testing frameworks like TestNG or JUnit for test automation

    • Use tools like Selenium WebDriver for browser automation

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Ask about manual testing
  • Q2. Identify test scenarios, write test cases
  • Ans. 

    Test scenarios and cases are identified based on requirements and specifications.

    • Identify functional and non-functional requirements

    • Create test scenarios based on requirements

    • Write test cases for each scenario

    • Include positive and negative test cases

    • Consider boundary conditions and edge cases

    • Perform exploratory testing

    • Use automation tools for repetitive tests

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. What is your preferred location
  • Ans. 

    I prefer to work in a location that offers a good work-life balance and opportunities for professional growth.

    • I value a location that has a strong tech industry and a supportive community of professionals.

    • A location with a diverse range of industries can provide interesting testing opportunities.

    • Access to good transportation options and amenities is important for convenience and quality of life.

    • Consider mentioning any ...

  • Answered by AI
  • Q2. As per company requirement

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice program and visit naukari profile daily, update resume

Skills evaluated in this interview

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

I was interviewed before Jan 2024.

Round 1 - Coding Test 

Online java string reversed. oops,

Round 2 - One-on-one 

(2 Questions)

  • Q1. Selenium appium, API AUTOMATION QUESTION
  • Q2. Selenium dynamic locator
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Related to technologies which we mentioned in our resume
Round 3 - Technical 

(1 Question)

  • Q1. Coding level programming questions
Round 4 - HR 

(1 Question)

  • Q1. Package discussion and working projects

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Senior Test Engineer interview?
Tech Mahindra interview process usually has 2-3 rounds. The most common rounds in the Tech Mahindra interview process are Technical, HR and Resume Shortlist.
How to prepare for Tech Mahindra Senior Test Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tech Mahindra. The most common topics and skills that interviewers at Tech Mahindra expect are Test Engineering, Automation Testing, Selenium, Java and Test Cases.
What are the top questions asked in Tech Mahindra Senior Test Engineer interview?

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

  1. What are Java Collections you have used in your Projec...read more
  2. How you can reslove merge conflicts in git ? Share your experienc...read more
  3. 2.WAP to provide String without duplicates.(Each character repeated only once) ...read more
How long is the Tech Mahindra Senior Test Engineer interview process?

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

Tell us how to improve this page.

Tech Mahindra Senior Test Engineer Interview Process

based on 17 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Tech Mahindra Senior Test Engineer Salary
based on 2.1k salaries
₹5 L/yr - ₹20 L/yr
8% more than the average Senior Test Engineer Salary in India
View more details

Tech Mahindra Senior Test Engineer Reviews and Ratings

based on 174 reviews

3.5/5

Rating in categories

3.2

Skill development

3.7

Work-life balance

3.0

Salary

3.6

Job security

3.5

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 174 Reviews and Ratings
Software Engineer
26.4k salaries
unlock blur

₹2 L/yr - ₹9.2 L/yr

Senior Software Engineer
21.4k salaries
unlock blur

₹5.5 L/yr - ₹23 L/yr

Technical Lead
11.7k salaries
unlock blur

₹9.5 L/yr - ₹38 L/yr

Associate Software Engineer
5.5k salaries
unlock blur

₹1.8 L/yr - ₹8.2 L/yr

Team Lead
5k salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.6
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare

Wipro

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