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
3.8

based on 20.3k Reviews

Filter interviews by

LTIMindtree Test Engineer Interview Questions, Process, and Tips

Updated 21 Dec 2024

Top LTIMindtree Test Engineer Interview Questions and Answers

  • Q1. Standard profiles on SFDC and what is web to lead in sfdc and how can you do it
  • Q2. What is QTP, difference between findelememt() and findelements().
  • Q3. Write a program to find occurrence of each character in string
View all 24 questions

LTIMindtree Test Engineer Interview Experiences

18 interviews found

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2024

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Coding Test 

It was only one round of interview as it was a entry level position
Question were asked on python basics like lists strings regular expression

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2023

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

I applied via Company Website and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

The test duration was 1 hour. General aptitude questions were asked

Round 2 - Coding Test 

3 sets of 2 coding questions were given. Candidates need to complete at least 1 question from each section. Basic coding questions were asked

Round 3 - HR 

(6 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a highly skilled Test Engineer with experience in various testing methodologies and tools.

    • Experienced in manual and automated testing

    • Proficient in test case design and execution

    • Strong knowledge of testing frameworks and tools such as Selenium and JUnit

    • Familiar with Agile development methodologies

    • Excellent problem-solving and analytical skills

    • Effective communication and collaboration with cross-functional teams

  • Answered by AI
  • Q2. Cities in which the company has an office
  • Ans. 

    The company has offices in multiple cities worldwide.

    • The company has offices in North America, Europe, Asia, and Australia.

    • Some of the cities where the company has offices include New York, London, Bangalore, and Sydney.

    • The company also has remote employees working from various locations.

  • Answered by AI
  • Q3. What programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java, Python, and C++

    • Familiar with JavaScript, HTML, and CSS

    • Experience with test automation frameworks like Selenium and Appium

  • Answered by AI
  • Q4. Have you done any certifications?
  • Ans. 

    Yes, I have completed several certifications related to software testing.

    • Certified Software Tester (CSTE)

    • ISTQB Certified Tester - Foundation Level

    • Agile Tester Certification (CTFL-AT)

    • Certified Test Manager (CTM)

  • Answered by AI
  • Q5. Do you have any other offers in hand?
  • Ans. 

    Yes, I have other offers in hand.

    • I have received offers from two other companies.

    • One offer is from a software development company and the other is from a telecommunications company.

    • I am currently evaluating all the offers to make an informed decision.

  • Answered by AI
  • Q6. Do you have any questions for me?

Test Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 1. What is the frame work u have worked and explain the framework ... read more
asked in Info Edge
Q2. Consecutive Characters Problem Statement Given a matrix of lowerc ... read more
asked in Info Edge
Q3. Remove Duplicates Problem Statement You are given an array of int ... read more
asked in GlobalStep
Q4. What are the problems we faced in the old generation video game c ... read more
Q5. what is a type of testing? What are the principles?

I was interviewed before May 2021.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Page Object Model explanation
  • Ans. 

    Page Object Model is a design pattern used in test automation to create an object repository for web UI elements.

    • It separates the test code from the page-specific code

    • It improves code maintainability and reduces code duplication

    • It allows for easy modification of UI elements without affecting the test code

    • It promotes code reusability

    • Example: LoginPage.java, HomePage.java, etc.

    • Example: driver.findElement(By.id("username"...

  • Answered by AI
  • Q2. Page factory explanation
  • Ans. 

    Page factory is a design pattern used in Selenium to create object repositories for web elements.

    • Page factory helps in reducing code duplication and improves code maintainability.

    • It initializes web elements using @FindBy annotation.

    • It supports lazy loading of web elements.

    • It provides a way to separate page logic from test logic.

    • Example: @FindBy(id = "username") private WebElement username;

    • Example: PageFactory.initEleme

  • Answered by AI
  • Q3. Exception Handling in Java
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in Java programs.

    • Exceptions are objects that are thrown at runtime when an error occurs

    • try-catch block is used to handle exceptions

    • finally block is used to execute code regardless of whether an exception is thrown or not

    • catch block can handle multiple exceptions using multiple catch blocks or a single catch block with multiple exceptions separated by |

    • throw key...

  • Answered by AI
  • Q4. Collection framework in java
  • Ans. 

    Collection framework in Java is a set of classes and interfaces that provide a way to store and manipulate groups of objects.

    • The framework includes interfaces like List, Set, and Map

    • Classes like ArrayList, HashSet, and HashMap implement these interfaces

    • Collections class provides utility methods for sorting, searching, and manipulating collections

    • Example: List names = new ArrayList<>(); names.add("John"); names.add("Jan...

  • Answered by AI
  • Q5. Write a program to find occurrence of each character in string
  • Ans. 

    A program to find the occurrence of each character in a string.

    • Create a dictionary to store the count of each character.

    • Iterate through the string and update the count in the dictionary.

    • Print the dictionary to display the occurrence of each character.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Core Java concepts and selenium web element handling questions preparation is enough

Skills evaluated in this interview

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 23 Jul 2021

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between abstract and interface
  • Ans. 

    Abstract class is a blueprint of a class while interface is a contract that a class agrees to follow.

    • Abstract class can have both abstract and non-abstract methods while interface can only have abstract methods.

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

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have instance variables while interface canno...

  • Answered by AI
  • Q2. Give some practical examples of polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were of the same class.

    • Method overloading is an example of compile-time polymorphism

    • Method overriding is an example of runtime polymorphism

    • A parent class reference variable can refer to a child class object

    • An interface reference variable can refer to a class object that implements the interfac...

  • Answered by AI
  • Q3. Method overloading and method overriding
  • Q4. Iframes

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was smooth and long. Be patient to get your offer letter.

Skills evaluated in this interview

LTIMindtree interview questions for designations

 Senior Test Engineer

 (32)

 Automation Test Engineer

 (24)

 Performance Test Engineer

 (2)

 SAP Test Engineer

 (1)

 QA Test Engineer

 (1)

 Manual Test Engineer

 (1)

 Trainee Test Engineer

 (1)

 Senior Automation Test Engineer

 (4)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2021

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Very basic selenium
  • Q2. Basic java programming
  • Q3. Basic array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was easy best prepared if you are good with java basics

Get interview-ready with Top LTIMindtree Interview Questions

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2021

Interview Questionnaire 

3 Questions

  • Q1. Technical Round 1:- Questions on JAVA - Interface,Collections, Code, OOPS concept on Automation, Constructor , questions on Selenium webdriver
  • Q2. Technical round 2 - Projects involved, Automation script on projects
  • Q3. HR round

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2020

I was interviewed in Mar 2020.

Interview Questionnaire 

8 Questions

  • Q1. What are different types of triggers, workflows? More on workflow actions and time based activities
  • Q2. What is owd and data types?
  • Ans. 

    OWD stands for Object Work Directory. Data types refer to the different types of data that can be stored in a program.

    • OWD is the directory where the current object is stored during runtime.

    • Data types include integers, strings, booleans, and floats.

    • Each data type has its own set of operations that can be performed on it.

    • Examples of data types: int age = 25; string name = 'John'; bool isTrue = true; float price = 9.99;

  • Answered by AI
  • Q3. Various types of Reports and dashboards
  • Ans. 

    Reports and dashboards are tools used to visualize and analyze data.

    • Reports provide detailed information on specific data points or events.

    • Dashboards provide an overview of key performance indicators (KPIs) and trends.

    • Types of reports include operational, analytical, and ad-hoc reports.

    • Types of dashboards include strategic, operational, and analytical dashboards.

    • Examples of reporting tools include Crystal Reports, SSRS...

  • Answered by AI
  • Q4. Sales flow stages and opportunity stages
  • Ans. 

    Sales flow stages and opportunity stages

    • Sales flow stages refer to the steps involved in the sales process, from lead generation to closing the deal

    • Opportunity stages refer to the different stages in the sales pipeline, from identifying a potential opportunity to closing the deal

    • Common sales flow stages include lead generation, qualification, needs analysis, proposal, negotiation, and closing

    • Common opportunity stages i...

  • Answered by AI
  • Q5. Types of data security
  • Ans. 

    Types of data security include encryption, access control, backup and recovery, and physical security.

    • Encryption: converting data into a code to prevent unauthorized access

    • Access control: limiting access to data based on user roles and permissions

    • Backup and recovery: creating copies of data to prevent loss in case of a security breach or system failure

    • Physical security: protecting hardware and storage devices from thef

  • Answered by AI
  • Q6. Custom and Console apps and what is default access available on custom object
  • Q7. Worked on data loader and workbench along with soql queries
  • Q8. Standard profiles on SFDC and what is web to lead in sfdc and how can you do it
  • Ans. 

    Standard profiles on SFDC and web to lead in SFDC

    • Standard profiles in SFDC are pre-built sets of permissions and access levels for users

    • Web-to-Lead is a feature in SFDC that allows you to capture lead information from your website and automatically create a lead record in SFDC

    • To set up Web-to-Lead, you need to create a web form on your website and then configure the form to send the data to SFDC

    • Standard profiles can be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview isn't difficult just that questions are of more towards technical side instead of testing questions related to Salesforce as part of admin...would be better if we are prepared for those.

Skills evaluated in this interview

Test Engineer Interview Questions & Answers

user image praveen pandey

posted on 4 May 2019

Interview Questionnaire 

5 Questions

  • Q1. Core Java questions related to multithreading, exception handling, collections.
  • Q2. Also, selenium related question like types of locators. And some basic question.
  • Q3. What is QTP, difference between findelememt() and findelements().
  • Ans. 

    QTP is a test automation tool. findelement() is used to find a single element, findelements() is used to find multiple elements.

    • QTP is short for QuickTest Professional, a test automation tool used for functional and regression testing.

    • findelement() is a method in QTP used to find a single element on a web page based on the specified locator.

    • findelements() is a method in QTP used to find multiple elements on a web page ...

  • Answered by AI
  • Q4. Use of GitHub, hashmap working.
  • Ans. 

    GitHub is a version control system used for collaborative software development. Hashmap is a data structure that stores key-value pairs.

    • GitHub is used for version control, allowing multiple developers to work on a project simultaneously.

    • Hashmap is a data structure that provides fast access to values based on their keys.

    • GitHub can be used to store and manage code repositories, track changes, and collaborate with other d...

  • Answered by AI
  • Q5. Personal discussion, related to joining date, and salary expectation.

Skills evaluated in this interview

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Test Engineer interview?
LTIMindtree interview process usually has 1-2 rounds. The most common rounds in the LTIMindtree interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for LTIMindtree 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 LTIMindtree. The most common topics and skills that interviewers at LTIMindtree expect are ETL Testing, Python, Selenium, Testing and Automation.
What are the top questions asked in LTIMindtree Test Engineer interview?

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

  1. Standard profiles on SFDC and what is web to lead in sfdc and how can you do...read more
  2. What is QTP, difference between findelememt() and findelements...read more
  3. Write a program to find occurrence of each character in str...read more

Tell us how to improve this page.

LTIMindtree Test Engineer Interview Process

based on 12 interviews

3 Interview rounds

  • Technical Round
  • HR Round
  • Personal Interview1 Round
View more

Test Engineer Interview Questions from Similar Companies

View all
LTIMindtree Test Engineer Salary
based on 1k salaries
₹2.5 L/yr - ₹8.5 L/yr
8% less than the average Test Engineer Salary in India
View more details

LTIMindtree Test Engineer Reviews and Ratings

based on 97 reviews

3.8/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.3

Salary

3.8

Job security

3.8

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 97 Reviews and Ratings
Senior Software Engineer
21.2k salaries
unlock blur

₹4.7 L/yr - ₹18.6 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 L/yr

Technical Lead
6.5k salaries
unlock blur

₹9.3 L/yr - ₹37 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.8
Compare

Accenture

3.9
Compare

TCS

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