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 QA Specialist Interview Questions and Answers

Updated 6 Dec 2021

LTIMindtree QA Specialist Interview Experiences

1 interview found

QA Specialist Interview Questions & Answers

user image Hareesh Gonuguntla

posted on 6 Dec 2021

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. List comprehension in python Loops and decorators
  • Ans. 

    List comprehension is a concise way to create lists in Python. Loops are used to iterate over a sequence of elements. Decorators modify the behavior of a function.

    • List comprehension is a shorthand way to create lists in Python

    • It uses a single line of code to create a list based on an existing list or iterable

    • Loops are used to iterate over a sequence of elements

    • For loops are commonly used in Python to iterate over lists...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice and technical

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How have you worked in past
Round 2 - HR 

(1 Question)

  • Q1. How much u are expecting

Senior Quality Analyst Interview Questions & Answers

Genpact user image Priyadharshini Sivarajan

posted on 13 Jan 2025

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

(3 Questions)

  • Q1. Collections,List set diff,basic coding
  • Q2. Cucumber basics
  • Q3. Java interface Framework explanation
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Abstract class vs interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that a class must implement.

    • Abstract class can have constructors, fields, and methods, while interface can only have abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used when some common functionality needs to be s...

  • Answered by AI
  • Q2. Finalize method
Round 2 - Technical 

(2 Questions)

  • Q1. 2nd largest number from a array
  • Ans. 

    Find the 2nd largest number in an array of strings.

    • Convert the strings to numbers before comparing.

    • Sort the array in descending order and return the second element.

    • Handle edge cases like empty array or array with only one element.

  • Answered by AI
  • Q2. List vs set linked list
  • Ans. 

    List is a collection of elements with duplicates allowed, while set is a collection of unique elements. Linked list is a data structure where each element points to the next element.

    • List allows duplicates, set does not

    • Linked list has elements connected by pointers

    • List can be implemented using arrays or linked lists

    • Set is implemented using hash tables or trees

  • Answered by AI
Round 3 - Tech  Manegerial 

(2 Questions)

  • Q1. Test life cycle
  • Q2. Why do u want to switch

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction about yourself
  • Q2. How did u used automation in your privious project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Technical java selenium, BDD
  • Q2. Technical java, selenium, framework
  • Q3. Framework design knowledge
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Questions on basic programs on string handling

QA Engineer Interview Questions & Answers

IBM user image Rishik Bhimavarapu

posted on 11 Oct 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-
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 - Coding Test 

2 coding ques in 1 hr

Round 3 - Technical 

(5 Questions)

  • Q1. Core java and oops
  • Q2. Use of this keyword in java
  • Ans. 

    The 'this' keyword in Java refers to the current instance of the class.

    • Used to refer to instance variables or methods of the current object

    • Can be used to differentiate between instance variables and local variables with the same name

    • Can be passed as an argument to other methods

  • Answered by AI
  • Q3. Difference between final and finally
  • Ans. 

    final is a keyword used in Java to declare constants, while finally is a block of code used in exception handling to ensure a piece of code is always executed.

    • final is used to declare constants in Java, its value cannot be changed once assigned

    • finally is a block of code used in exception handling to ensure a piece of code is always executed, regardless of whether an exception is thrown or not

    • Example: final int MAX_VALU...

  • Answered by AI
  • Q4. Basic principles of oops
  • Ans. 

    Basic principles of OOP include encapsulation, inheritance, and polymorphism.

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

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

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

    • Example: A 'Car' class may have properties like 'color' and 'model', and methods like 'st

  • Answered by AI
  • Q5. Method over riding and method overloading

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

Capgemini user image praveen gopalsamy

posted on 2 Aug 2023

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. JAVA AND SELENIUM AND CUCUCMBER
  • Q2. API AUTOMATION TESTING WITHREST ASSURED
Round 2 - Technical 

(1 Question)

  • Q1. JAVA, SELENIUM AND CUCUMBER
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

(3 Questions)

  • Q1. Coding palindrome number
  • Ans. 

    Coding a function to check if a number is a palindrome

    • Create a function that takes in a number as input

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string to check for palindrome

    • Return true if the number is a palindrome, false otherwise

  • Answered by AI
  • Q2. Am strong number and put output
  • Q3. Find the xpath of an site
  • Ans. 

    To find the xpath of a site, inspect the element in the browser and use developer tools.

    • Inspect the element on the website using browser developer tools

    • Right click on the element and select 'Inspect' to view the HTML code

    • Locate the element in the HTML code and right click to copy the xpath

    • Use the copied xpath in your automation scripts for testing

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me something about yourself?
  • Q2. Tell about your last working job?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
LTIMindtree QA Specialist Salary
based on 45 salaries
₹7 L/yr - ₹21.8 L/yr
13% more than the average QA Specialist Salary in India
View more details

LTIMindtree QA Specialist Reviews and Ratings

based on 2 reviews

3.6/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.2

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
21.3k salaries
unlock blur

₹5.1 L/yr - ₹18.7 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.7k salaries
unlock blur

₹7 L/yr - ₹25.5 L/yr

Technical Lead
6.4k salaries
unlock blur

₹9.4 L/yr - ₹36 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.3 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Accenture

3.8
Compare

TCS

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