Upload Button Icon Add office photos
Engaged Employer

i

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

LTIMindtree Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LTIMindtree Sdet Automation Test Engineer Interview Questions and Answers

Updated 21 Oct 2024

LTIMindtree Sdet Automation Test Engineer Interview Experiences

2 interviews found

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

(5 Questions)

  • Q1. Introduction about self
  • Q2. What is the difference between close and quit
  • Q3. Reverse a string program
  • Ans. 

    Program to reverse a string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end of the string

    • Repeat until the entire string is reversed

  • Answered by AI
  • Q4. How to handle pop-up
  • Q5. What is getWindowsHandles

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Java and automation question

Sdet Automation Test Engineer Interview Questions Asked at Other Companies

Q1. Wait in selenium and how to find all links present in a page xpat ... read more
Q2. What is page object model and test ng annotations
Q3. How do you handle alerts in Selenium, and what methods do you use ... read more
Q4. How to take screenshot and project framework
asked in Oracle
Q5. Maximum substring Sum , Merge two arrays without extra space .

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
  • Q1. Normal SDET questions regarding framework
  • Q2. Normal SDET questions for collection framework
  • Ans. 

    SDET questions on the Collection Framework focus on data structures, performance, and usage in automation testing.

    • What are the main interfaces in the Collection Framework? (e.g., List, Set, Map)

    • Explain the differences between ArrayList and LinkedList.

    • How does HashMap work internally? Discuss its performance characteristics.

    • What is the difference between HashSet and TreeSet?

    • How can you iterate over a Collection? Provide...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer exhibited a lack of professionalism, and such incidents should be reported to the organization.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Basic leetcode problems

Round 2 - One-on-one 

(4 Questions)

  • Q1. Asked questions from my Resume.
  • Q2. Asked questions about my Non-Technical Experiences
  • Q3. Asked me to automate some things from selenium webdriver because I had mentioned projects on resume.
  • Q4. Asked me to write some content explaining about cybersecurity awareness because I had mentioned Content Writing on my resume.

Interview Preparation Tips

Topics to prepare for IBM Sdet Automation Test Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Be Honest and Concise, Dont overshare when a question is asked, just answer the question in its entirety

What people are saying about LTIMindtree

View All
staticsalamander
1w
works at
Startup
Node.js Dev Dilemma: LTIMindtree, Capgemini, or TCS?
Need some advice! I’m a Node.js dev with 6+ years of experience and I’ve got offers from: LTIMindtree (26 LPA) Capgemini (27 LPA) TCS (24 LPA) I'm trying to figure out which company would have better projects, especially in AI or newer tech. I’m really into AI-related stuff. Anyone working at these companies know about the overall work experience?
Got a question about LTIMindtree?
Ask anonymously on communities.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA two sum. question was asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basics maths and reasoning and they will give you one topic based on that you have write story with 200 words with the given time

Round 2 - Technical 

(3 Questions)

  • Q1. What is OOPS ??
  • Q2. What is class and variable
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming, while a variable is a container for storing data.

    • A class defines the properties and behaviors of objects, while a variable holds a value that can be changed or manipulated.

    • Classes can be used to create multiple instances of objects with the same properties and behaviors.

    • Variables can be of different data types such as int, string, boolean, etc.

    • ...

  • Answered by AI
  • Q3. Difference between println and print
  • Ans. 

    println adds a new line after printing, while print does not

    • println adds a new line character at the end of the output

    • print does not add a new line character, so the next output will be on the same line

    • Example: println('Hello') will print 'Hello' on a new line, while print('Hello') will print 'Hello' on the same line

  • Answered by AI

Skills evaluated in this interview

LTIMindtree HR Interview Questions

495 questions and answers

Q. What is your current professional experience?
Q. How would you manage operational disruptions within your team as a project ... read more
Q. What other technologies have you worked on?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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. Selenium and testng questions.
  • Q2. Java program to reverse a sentence
  • Ans. 

    Java program to reverse a sentence

    • Split the sentence into words using the split() method

    • Create a new array to store the reversed words

    • Iterate through the words in reverse order and add them to the new array

    • Join the reversed words using the join() method to form the reversed sentence

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Oops and collection questions.
  • Q2. Program to find repeated character in a word.

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. What is the method to find duplicate characters in a string?
  • Ans. 

    To find duplicate characters in a string, we can use various methods like hashing or counting occurrences using data structures.

    • Using a Hash Map: Iterate through the string, storing each character's count in a hash map. Example: 'hello' -> {'h': 1, 'e': 1, 'l': 2, 'o': 1}.

    • Using a Set: Track seen characters in a set. If a character is already in the set, it's a duplicate. Example: 'banana' -> duplicates are 'a' an...

  • Answered by AI
  • Q2. Find the maximum value in an array.
  • Q3. Describe the different waits in selenium
  • Ans. 

    Selenium provides different wait strategies to handle dynamic web elements effectively during automation testing.

    • Implicit Wait: Sets a default wait time for the entire session, allowing Selenium to poll the DOM for a specified duration before throwing an exception. Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Explicit Wait: Allows waiting for a specific condition to occur before proceeding f...

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

I applied via Job Fair and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about Sets and maps
Round 2 - Behavioral 

(1 Question)

  • Q1. Asking about deliverables
Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is key to success.
Round 1 - Technical 

(1 Question)

  • Q1. About xpaths and about webdriver io
Round 2 - HR 

(1 Question)

  • Q1. Salaey expectation and share your experience in technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all coding as qell as twchnical questions will be able to crack wasily

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Sdet Automation Test Engineer interview?
LTIMindtree interview process usually has 1 rounds. The most common rounds in the LTIMindtree interview process are Coding Test and Technical.
What are the top questions asked in LTIMindtree Sdet Automation Test Engineer interview?

Some of the top questions asked at the LTIMindtree Sdet Automation Test Engineer interview -

  1. What is getWindowsHand...read more
  2. How to handle pop...read more
  3. Reverse a string prog...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 3 interview experiences

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
LTIMindtree Sdet Automation Test Engineer Salary
based on 47 salaries
₹3 L/yr - ₹6.6 L/yr
70% less than the average Sdet Automation Test Engineer Salary in India
View more details

LTIMindtree Sdet Automation Test Engineer Reviews and Ratings

based on 8 reviews

3.2/5

Rating in categories

3.0

Skill development

3.6

Work-life balance

2.1

Salary

3.2

Job security

3.2

Company culture

2.1

Promotions

2.9

Work satisfaction

Explore 8 Reviews and Ratings
Senior Software Engineer
22.2k salaries
unlock blur

₹7.6 L/yr - ₹22.3 L/yr

Software Engineer
16.4k salaries
unlock blur

₹3.9 L/yr - ₹8.9 L/yr

Technical Lead
6.4k salaries
unlock blur

₹16.6 L/yr - ₹29 L/yr

Module Lead
5.6k salaries
unlock blur

₹11.9 L/yr - ₹22 L/yr

Senior Engineer
4.7k salaries
unlock blur

₹6.1 L/yr - ₹12.9 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.7
Compare

TCS

3.5
Compare
write
Share an Interview