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
3.5

based on 33.8k Reviews

Filter interviews by

Tech Mahindra Customer Response Executive Interview Questions and Answers

Updated 19 Apr 2022

Tech Mahindra Customer Response Executive Interview Experiences

1 interview found

I applied via Referral and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about your self

Interview Preparation Tips

Topics to prepare for Tech Mahindra Customer Response Executive interview:
  • customer support
Interview preparation tips for other job seekers - Confidently attent the interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. 2 way 3 way matching
  • Ans. 

    2 way 3 way matching is a process used in accounting to ensure accuracy in financial transactions.

    • 2 way matching involves matching the invoice with the purchase order

    • 3 way matching involves matching the invoice with the purchase order and the receiving report

    • Helps in detecting errors or discrepancies in the billing process

  • Answered by AI
  • Q2. Accounts payable and accounts receivable
  • Q3. Some general questions
Round 2 - Technical 

(7 Questions)

  • Q1. T code to review po
  • Ans. 

    ME23N

    • ME23N is the T code used to review purchase orders in SAP

    • It allows users to view details of a specific purchase order, such as vendor information, item details, and delivery status

  • Answered by AI
  • Q2. If you find mismatch in quantity who to you contact
  • Ans. 

    Contact the inventory manager or supervisor for resolution.

    • Contact inventory manager or supervisor immediately

    • Verify the discrepancy with relevant documentation

    • Discuss potential causes of the mismatch and work towards resolution

  • Answered by AI
  • Q3. Vendor ledger entry
  • Q4. Where you see grn
  • Ans. 

    GRN stands for Goods Receipt Note, which is a document used in the procurement process to confirm the receipt of goods.

    • GRN is used in the procurement process to verify that the goods ordered have been received in good condition.

    • It includes details such as the quantity, quality, and condition of the goods received.

    • GRN is an important document for inventory management and accounting purposes.

    • It is typically generated by ...

  • Answered by AI
  • Q5. First self introduction
  • Q6. How you learn from where you learn
  • Q7. You have theoretical knowledge no practical how can u do
  • Ans. 

    I would seek hands-on experience through internships, workshops, or online tutorials to bridge the gap between theory and practice.

    • Seek internships or part-time jobs in the field to gain practical experience

    • Participate in workshops or training sessions to apply theoretical knowledge in real-life scenarios

    • Utilize online tutorials or courses to practice and implement theoretical concepts

    • Collaborate with professionals in ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Listen questions properly what the interviewer are asking and say what the need other wise silent my big mistake is saying more what they asking
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. "Hello world" java program to print the count of letter 'l'
  • Ans. 

    A Java program to count the occurrences of the letter 'l' in the string 'Hello world'.

    • Create a Java program with a main method.

    • Initialize a String variable with the value 'Hello world'.

    • Use a loop to iterate through each character in the string and count the occurrences of the letter 'l'.

    • Print the count of 'l' at the end.

  • Answered by AI
  • Q2. "Hello world" java program to print output as "olleH dlrow"
  • Ans. 

    Reverse the characters of each word in a given string

    • Split the input string into an array of words

    • Reverse each word in the array

    • Join the reversed words back into a single string

  • Answered by AI
  • Q3. What is the diff between comparator and comparable
  • Ans. 

    Comparator is an interface used to sort objects, while Comparable is an interface used to compare objects for natural ordering.

    • Comparator is used to define custom sorting logic for objects, while Comparable is used for natural ordering based on the class's implementation of compareTo() method.

    • Comparator can be used to sort objects of different classes, while Comparable is implemented within the class itself.

    • Example: So...

  • Answered by AI
  • Q4. What is lamda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in programming languages.

    • Lambda expressions are used to create small, inline functions without a formal definition.

    • They are commonly used in functional programming languages like Python, Java, and C#.

    • Lambda expressions can be used to simplify code and make it more readable.

    • Example: (x, y) -> x + y is a lambda expression that takes two parameters a

  • Answered by AI
  • Q5. What is contructor chaining
  • Ans. 

    Constructor chaining is the process of calling one constructor from another constructor in a class.

    • Allows reusing code and avoiding duplication

    • Can be achieved using 'this' keyword in the constructor

    • Helps in initializing objects with different parameters

  • Answered by AI
  • Q6. Appium & Selenium architecture
  • Q7. How to handle notifications in mobile automation
  • Ans. 

    Handle notifications in mobile automation by using automation tools to interact with notifications, verify content, dismiss or respond to them.

    • Use automation tools like Appium or Espresso to interact with notifications

    • Verify the content of notifications by extracting text or images

    • Dismiss notifications to continue with test execution

    • Respond to notifications if required for test scenarios

    • Handle different types of notifi...

  • Answered by AI
  • Q8. How to handle if element xpath is different in ios and android apps
  • Ans. 

    Use platform-specific locators or conditional statements to handle different element xpaths in iOS and Android apps.

    • Use platform-specific locators like accessibility id for iOS and resource id for Android

    • Implement conditional statements to switch between different xpaths based on the platform

    • Utilize Appium's platformName capability to identify the platform and adjust the element xpath accordingly

  • Answered by AI
  • Q9. Different TestNG annotations and order
  • Ans. 

    TestNG annotations include @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite

    • @Test - denotes a test method

    • @BeforeMethod - runs before each test method

    • @AfterMethod - runs after each test method

    • @BeforeClass - runs before the first test method in the current class

    • @AfterClass - runs after the last test method in the current class

    • @BeforeSuite - runs before all tests in the suite

    • @AfterSu

  • Answered by AI
  • Q10. What is pom.xml and how to mention dependencies
  • Ans. 

    pom.xml is a configuration file used in Maven projects to define project settings and dependencies.

    • pom.xml stands for Project Object Model XML

    • It is used in Maven projects to manage project configuration, build settings, and dependencies

    • Dependencies are mentioned inside the <dependencies> tag in pom.xml

    • Each dependency is specified with <groupId>, <artifactId>, and <version>

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went well, its been more than a week.. no call back for feedback.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good 2 Questions asked

Round 2 - Technical 

(3 Questions)

  • Q1. Find the count of rows in table using xpath.
  • Ans. 

    Use XPath to find the count of rows in a table.

    • Use the XPath expression 'count(//table//tr)' to find the count of rows in a table.

    • Make sure to adjust the XPath expression based on the structure of the table in the HTML document.

    • You can use browser developer tools to inspect the table and determine the appropriate XPath expression.

  • Answered by AI
  • Q2. On clicking the checkbox the value of checkbox should also be displayed
  • Q3. There is an id in particular row example 123456, find the id and there are multiple pages you have to iterate through each page and print the value if available if not that print message the id not availab...
  • Ans. 

    Iterate through multiple pages to find and print a specific id value

    • Create a loop to iterate through each page

    • Search for the id value on each page

    • If the id is found, print the value, if not, print a message that the id is not available

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Did not seem like the Interviewer wanted to hire anyone. He asked a Question gave me a paper and pen and he put his head down claiming he had an headache. When I tried to talk to him to clarify my queries, he would taunt like we have hired people and they don't even know to write an xpath. Also he commented I hope you must have come through these scenarios hope you must have seen a table. No respect for the candidate. After asking the Questions he expected me to answer without thinking I should just type. Commented multiple times that this is so simple.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Login page test case using selenium
  • Ans. 

    Test case for login page using Selenium

    • Verify that the login page loads successfully

    • Enter valid credentials and verify successful login

    • Enter invalid credentials and verify appropriate error message

    • Check for password encryption

    • Verify the 'Forgot Password' functionality

  • Answered by AI
  • Q2. Java program to find max in array
  • Ans. 

    Java program to find max in array

    • Iterate through the array and compare each element to find the maximum value

    • Initialize a variable to store the maximum value and update it as needed

    • Handle edge cases like empty array or null input

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Previous work experience and automation framework
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical round
  • Q2. Selenium questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

(2 Questions)

  • Q1. Previous experience of work
  • Q2. Any related experience

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for the interview and all the best for all the questions you get in interviews
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Please us more about your experience in previous company.
Round 3 - HR 

(1 Question)

  • Q1. What is your salary expectation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Alway be yourself and real in the interview process.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - HR 

(5 Questions)

  • Q1. Can you tell me about yourself?
  • Ans. 

    I am a dedicated and detail-oriented process developer with a strong background in streamlining workflows and improving efficiency.

    • I have a Bachelor's degree in Business Administration with a focus on process improvement

    • I have experience working with cross-functional teams to identify bottlenecks and implement solutions

    • I am proficient in using process mapping tools such as Visio and Lucidchart

    • I have successfully reduce...

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    My salary expectations are in line with industry standards and based on my experience and qualifications.

    • Research industry standards for Process Developers in the local area

    • Consider my experience and qualifications when determining salary expectations

    • Be prepared to negotiate based on the job responsibilities and benefits package offered

  • Answered by AI
  • Q3. What is your notice period?
  • Ans. 

    My notice period is currently one month.

    • Notice period is one month

    • I am required to give one month notice before leaving my current position

    • I can start the new role after serving the one month notice period

  • Answered by AI
  • Q4. Are you comfortable with relocation?
  • Ans. 

    Yes, I am comfortable with relocation.

    • I am open to relocating for the right opportunity

    • I have previous experience relocating for work

    • I understand the benefits of relocation for career growth

  • Answered by AI
  • Q5. What is your preference regarding night shifts?
  • Ans. 

    I am open to working night shifts and have experience working during those hours.

    • I am comfortable working night shifts and have no issues with adjusting my schedule.

    • I have previous experience working night shifts in my previous roles.

    • I understand the importance of night shifts in maintaining continuous operations and am willing to contribute during those hours.

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. What are your current responsibilities?
  • Ans. 

    As a Process Developer, my current responsibilities include analyzing existing processes, identifying areas for improvement, designing and implementing new processes, and monitoring performance metrics.

    • Analyzing existing processes

    • Identifying areas for improvement

    • Designing and implementing new processes

    • Monitoring performance metrics

  • Answered by AI
  • Q2. What achievements have you accomplished in your career?
  • Ans. 

    I have successfully led a team in implementing a new process that resulted in a 20% increase in efficiency.

    • Led a team in implementing a new process

    • Achieved a 20% increase in efficiency

    • Received recognition from senior management for the successful implementation

  • Answered by AI
  • Q3. Could you briefly explain your achievements?
  • Ans. 

    I have successfully implemented process improvements resulting in cost savings and increased efficiency.

    • Implemented automation tools to streamline workflow processes

    • Reduced processing time by 20% through optimization strategies

    • Led a team in achieving a 30% reduction in error rates

    • Received Employee of the Month award for outstanding performance

  • Answered by AI

Tech Mahindra Interview FAQs

How many rounds are there in Tech Mahindra Customer Response Executive interview?
Tech Mahindra interview process usually has 1 rounds. The most common rounds in the Tech Mahindra interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Tech Mahindra Customer Response Executive Salary
based on 30 salaries
₹1.6 L/yr - ₹3 L/yr
6% less than the average Customer Response Executive Salary in India
View more details

Tech Mahindra Customer Response Executive Reviews and Ratings

based on 8 reviews

3.7/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.4

Salary

3.7

Job security

3.3

Company culture

3.6

Promotions

3.5

Work satisfaction

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

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
21.3k salaries
unlock blur

₹5.5 L/yr - ₹23.3 L/yr

Technical Lead
11.6k salaries
unlock blur

₹9.5 L/yr - ₹37 L/yr

Associate Software Engineer
5.2k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Team Lead
4.9k salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Explore more salaries
Compare Tech Mahindra with

Infosys

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Wipro

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