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

Updated 11 Aug 2025
Popular Designations

2.3k Interview questions

A Programmatic Operations Specialist was asked 5d ago
Q. Do you have experience working with Campaign Manager 360 (DCM)?
Ans. 

Yes, I have experience with Campaign Manager 360, managing and optimizing digital advertising campaigns effectively.

  • Utilized Campaign Manager 360 for tracking and reporting on ad performance across multiple channels.

  • Implemented floodlight tags to measure conversions and user interactions, enhancing campaign insights.

  • Created and managed custom reports to analyze key metrics, such as CTR and ROI, for better decision...

View all Programmatic Operations Specialist interview questions
A Software Engineering Specialist was asked 6d ago
Q. How can a client component be added to the server side?
Ans. 

Integrating client components on the server side involves using frameworks and APIs to facilitate communication and data exchange.

  • Use RESTful APIs to allow client components to communicate with the server. Example: A React app fetching data from a Node.js backend.

  • Implement WebSockets for real-time communication between client and server. Example: A chat application where messages are sent instantly.

  • Utilize server-...

View all Software Engineering Specialist interview questions
A Software Engineering Specialist was asked 6d ago
Q. What is the Context API?
Ans. 

The Context API is a React feature that allows for state management and sharing data across components without prop drilling.

  • Provides a way to pass data through the component tree without having to pass props down manually at every level.

  • Useful for global state management, such as user authentication or theme settings.

  • Example: Creating a ThemeContext to manage light/dark mode across the application.

  • Can be combined...

View all Software Engineering Specialist interview questions
A Software Engineering Specialist was asked 6d ago
Q. Explain .NET Core and its differences with .NET Framework.
Ans. 

Dot Net Core is a cross-platform, open-source framework for building modern applications, unlike the Windows-only .NET Framework.

  • .NET Core is cross-platform, supporting Windows, macOS, and Linux, while .NET Framework is limited to Windows.

  • Dot Net Core is open-source, allowing community contributions, whereas .NET Framework is proprietary.

  • Performance is generally better in .NET Core due to its modular architecture ...

View all Software Engineering Specialist interview questions

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.
A Software Engineering Specialist was asked 6d ago
Q. What is the life cycle of an ASP.NET Application?
Ans. 

The ASP.NET application life cycle involves stages from initialization to request handling and response generation.

  • 1. Application Start: Initializes application settings and resources.

  • 2. Request Handling: Processes incoming HTTP requests via routing.

  • 3. Page Life Cycle: Involves stages like Init, Load, and Render for each page.

  • 4. Event Handling: Responds to user actions and events.

  • 5. Application End: Cleans up reso...

View all Software Engineering Specialist interview questions
A Data Engineer was asked 1w ago
Q. What is the difference between Coalesce and Repartition?
Ans. 

Coalesce reduces partitions without a shuffle; Repartition reshuffles data and can increase or decrease partitions.

  • Coalesce is used to reduce the number of partitions in a DataFrame without a full shuffle.

  • Repartition can increase or decrease the number of partitions and involves a full shuffle of the data.

  • Example of Coalesce: df.coalesce(2) reduces partitions to 2 without shuffling.

  • Example of Repartition: df.repar...

View all Data Engineer interview questions

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?
A Data Engineer was asked 1w ago
Q. What is Data Skewness?
Ans. 

Data skewness measures the asymmetry of data distribution, indicating whether data points are concentrated on one side.

  • Positive skewness: Tail on the right side (e.g., income distribution).

  • Negative skewness: Tail on the left side (e.g., age at retirement).

  • Zero skewness: Symmetrical distribution (e.g., normal distribution).

  • Skewness affects statistical analysis and model performance.

View all Data Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer 2 was asked 1w ago
Q. What is Middleware in Django?
Ans. 

Middleware in Django is a framework of hooks into Django's request/response processing.

  • Middleware is a way to process requests globally before they reach the view or after the view has processed them.

  • Common use cases include session management, user authentication, and cross-site request forgery protection.

  • Django provides built-in middleware like 'AuthenticationMiddleware' for user sessions and 'CsrfViewMiddleware...

View all Senior Software Engineer 2 interview questions
A System Consultant was asked 1w ago
Q. Describe your experience with the full change management process.
Ans. 

The full change management process involves planning, implementing, and reviewing changes to minimize disruption and ensure success.

  • Identify the need for change: Assess current processes and identify areas for improvement, such as reducing costs or increasing efficiency.

  • Develop a change plan: Outline the objectives, scope, resources, and timeline for the change initiative.

  • Engage stakeholders: Communicate with all ...

View all System Consultant interview questions
A System Consultant was asked 1w ago
Q. Can you describe some real-time scenarios related to this role?
Ans. 

Real-time scenarios in system consulting involve practical applications of technology to solve immediate business challenges.

  • Implementing a real-time data analytics system for a retail client to track inventory levels and sales trends.

  • Developing a customer relationship management (CRM) system that provides instant updates on customer interactions and feedback.

  • Creating a real-time monitoring system for a manufactur...

View all System Consultant interview questions

LTIMindtree Interview Experiences

3.1k interviews found

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

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

  • Q1. They were asking theoretical question on agile methodologies specific to sprint and Tosca automation. Even though the interviewer had np knowledge on web application, api and even on the server and integra...
  • Q2. Tosca interview questions no skilled interviews ask basic questions . Very bad pronunciation. Unlegible questions which only the interviewer can understand what she is trying to ask. Behaving very rude in ...
  • Q3. Features of Tosca. Api scan why used. Authentication how to validate
  • Ans. 

    Tosca is a test automation tool that supports API testing, enhancing efficiency and accuracy in software testing processes.

    • API Scanning: Tosca can automatically scan APIs to identify endpoints, methods, and parameters, streamlining the testing process.

    • Authentication Validation: Tosca supports various authentication methods (e.g., OAuth, Basic Auth) to ensure secure access to APIs during testing.

    • Test Case Design: Users ...

  • Answered by AI
  • Q4. Synchronisation why used. Execution list how to approve
  • Ans. 

    Synchronization is essential in software to manage concurrent processes and ensure data consistency across threads.

    • Data Consistency: Synchronization prevents data corruption by ensuring that only one thread can access shared resources at a time.

    • Thread Safety: Using synchronization mechanisms like locks or semaphores ensures that critical sections of code are executed by one thread at a time.

    • Deadlock Prevention: Proper ...

  • Answered by AI
  • Q5. Api with cicd pipeline integration means what tell in 2 lines
  • Ans. 

    API with CI/CD pipeline integration automates the deployment and testing of APIs, ensuring faster and more reliable software delivery.

    • Automated Testing: CI/CD pipelines can run automated tests on APIs to ensure functionality and performance before deployment.

    • Continuous Deployment: Changes to the API can be automatically deployed to production, reducing manual intervention and speeding up release cycles.

    • Version Control:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tosca automation never give an interview in this organisation. Reason behind is no skilled interviews are there in this organisation who can ask the relevant and correct technical questions to the candidate. Pronounciation also is not good and unethical stupid irrelevant questions they will ask expecting some byheart answers from the candidates. The interviewer will show her ego dominating and rude behaviour to the candidate. The whole discussion goes in a debate making the interviewer understand the right process which they dnt even agree even though they dnt have experience and knowledge. Altogether worst experience. And most wondering part is HR will also sit in the panel and listen to this nonsense. I dnt want to bring the interviewer name here . But even another colleague of mine had the same experience
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Azure cloud platform tech
  • Q2. Informatica tech stack ques
Round 2 - Technical 

(2 Questions)

  • Q1. Adf tech stack que
  • Q2. Scd type 2 implementation
  • Ans. 

    SCD Type 2 implementation involves tracking historical changes in data by creating new records for each change.

    • Identify the columns that need to be tracked for changes

    • Add effective start and end dates to track the validity of each record

    • Insert new records for changes and update end dates for previous records

    • Maintain a surrogate key to uniquely identify each version of the record

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Dw related que ans
  • Ans. 

    Data Warehousing (DW) involves collecting, storing, and managing large volumes of data for analysis and reporting.

    • Data Warehousing integrates data from multiple sources for comprehensive analysis.

    • It uses ETL (Extract, Transform, Load) processes to prepare data for analysis.

    • Examples of DW tools include Amazon Redshift, Google BigQuery, and Snowflake.

    • Data Warehouses support business intelligence activities, enabling bett...

  • Answered by AI
  • Q2. Solution design related que
Round 4 - HR 

(2 Questions)

  • Q1. Aspiration from my end
  • Q2. How soon can join
  • Ans. 

    I can join the team within 2 weeks.

    • I can start within 2 weeks of receiving the offer.

    • I need to give notice to my current employer.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join or even I would suggest not to apply or give interview to this pathetic company. I have cleared all my 4 rounds of interview including HR out of which 3 technical and 1 HR. 3 held on video conferencing and one face to face for which I have travelled almost 40 kms from my current location and they said without face to face they cannot proceed hence I had no option left but to travel, then when I entered into the office again put a laptop infront of me which is again video conferencing then I didn't understand why exactly they called me if they want to have it over video online.

Then after putting my lot of time and efforts when finally it comes to release the offer, then they stop picking up the calls and stop responding and the final excuses which I got from them for not releasing the offer is that their software will not allow them to release any offer which is more that 2 days of joining.

Such a pathetic company who even don't know that atleast if you are not releasing the offer, it's your duty to atleast tell the person that either they are not able to provide the compensation as discussed or they are looking parallelly for someone who can settle in less compensation.

Due to all this I have wasted almost my 3-4 weeks of time expecting that I will receive the offer, and didn't focus on other organisations which was ready to provide slightly lower than this.

Hence it's a total scam which is going here suggesting not to get trapped otherwise you will not only waste your time but also other good opportunities as well.

It's a total boycott for me, expecting the same from your end as well, so that they will understand that playing with someone's job is not a joke.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

  • Q1. OOPs Concepts AI Questions React Questions SQL Queries I had a terrible experience. Initially, I was shortlisted for the technical interview, which went well and lasted about 27 minutes. However, I didn’t ...
  • Q2. Resume based questions
  • Ans. 

    I have a strong academic background in engineering, complemented by hands-on projects and internships that honed my technical skills.

    • Completed a Bachelor's degree in Mechanical Engineering with a focus on thermodynamics and fluid mechanics.

    • Interned at XYZ Corporation, where I assisted in the design and testing of HVAC systems, improving efficiency by 15%.

    • Participated in a team project that developed a prototype for a r...

  • Answered by AI

Implementation Specialist Interview Questions & Answers

user image Sravani Yannabathula

posted on 7 Aug 2025

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

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

  • Q1. Can I describe a challenging implementation issue I faced and how I resolved it? Is one of my projects, we faced a major issue integrating a third-party payment gateway with our ERP system. The API documen...
  • Q2. I start by aligning all stakeholders on the project gaols and timelines. I conduct regular sync-ups to track progress and resolve blockers.

Associate Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Quantitative Aptitude, Logical Reasoning, English Comprehension, Computer Science, Versant

Round 2 - Technical 

(10 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    I am a dedicated and experienced professional with a background in finance and a passion for problem-solving.

    • Experienced in financial analysis and reporting

    • Strong problem-solving skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Can you describe your project?
  • Ans. 

    I developed a mobile app for tracking daily water intake and setting hydration goals.

    • Designed user-friendly interface for easy input of water consumption

    • Implemented reminder notifications to encourage regular hydration

    • Included visual graphs to track daily, weekly, and monthly water intake

    • Integrated with wearable devices to sync water intake data

  • Answered by AI
  • Q3. What technologies did you utilize in your project?
  • Ans. 

    I utilized technologies such as Python, SQL, and Tableau in my project.

    • Python

    • SQL

    • Tableau

  • Answered by AI
  • Q4. What is the process for creating and submitting code on GeeksforGeeks?
  • Ans. 

    The process for creating and submitting code on GeeksforGeeks involves writing code, testing it, and then submitting it on the platform.

    • Create an account on GeeksforGeeks website.

    • Write the code for the problem statement provided.

    • Test the code locally to ensure it works correctly.

    • Submit the code on the GeeksforGeeks platform for evaluation.

    • Receive feedback and improve the code if necessary.

  • Answered by AI
  • Q5. What do you know about cloud computing?
  • Ans. 

    Cloud computing is the delivery of computing services over the internet, including storage, servers, databases, networking, software, and more.

    • Cloud computing allows users to access resources on-demand without the need for physical hardware.

    • It offers scalability, flexibility, and cost-efficiency for businesses.

    • Examples of cloud computing services include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Plat...

  • Answered by AI
  • Q6. What can you tell me about Kubernetes?
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes allows for automatic scaling of applications based on resource usage.

    • It provides self-healing capabilities by automatically restarting containers that fail.

    • Kubernetes enables easy deployment and management of microservices architecture.

    • It supports various cloud pr...

  • Answered by AI
  • Q7. What is orchestration?
  • Ans. 

    Orchestration is the automated arrangement, coordination, and management of complex computer systems, services, and workflows.

    • Orchestration involves automating tasks and workflows to streamline processes.

    • It helps in coordinating multiple systems and services to work together seamlessly.

    • Examples include orchestrating the deployment of applications across different servers or managing the workflow of a data pipeline.

  • Answered by AI
  • Q8. How can you create programs in Java?
  • Ans. 

    Programs in Java can be created by writing code in a text editor or an IDE, compiling the code, and running it using a Java Virtual Machine (JVM).

    • Write Java code using classes, methods, variables, and control structures.

    • Compile the code using a Java compiler like javac.

    • Run the compiled code using a Java Virtual Machine (JVM) like java.

    • Use an Integrated Development Environment (IDE) like Eclipse or IntelliJ IDEA for eas...

  • Answered by AI
  • Q9. What is the process for setting the path in Java?
  • Ans. 

    Setting the path in Java involves adding directories to the classpath to locate external libraries or resources.

    • Use the 'java -cp' command to set the classpath for a specific Java program.

    • You can also set the classpath using the CLASSPATH environment variable.

    • To add a JAR file to the classpath, use the '-cp' or '-classpath' option followed by the path to the JAR file.

    • For example, to set the classpath to include a JAR f...

  • Answered by AI
  • Q10. Do you have any questions for me?
Round 3 - HR 

(4 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    Experienced Associate with a background in finance and strong analytical skills.

    • Background in finance with X years of experience

    • Strong analytical skills demonstrated through successful projects

    • Proven ability to work well in a team environment

  • Answered by AI
  • Q2. What additional hobbies do you engage in?
  • Ans. 

    I enjoy hiking, photography, and cooking in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Photography: I enjoy capturing moments and landscapes through my camera lens.

    • Cooking: I like experimenting with new recipes and cooking for friends and family.

  • Answered by AI
  • Q3. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am open to exploring new locations for career growth

    • I am willing to relocate for the right job offer

    • I have experience moving for previous job opportunities

  • Answered by AI
  • Q4. Do u have any questions for me?

Interview Questions & Answers

user image Harsh Garg

posted on 14 Dec 2024

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test provided on a platform that included two coding questions and about 20 MCQs. Time provided was definitely short, and my guess would be that they wanted interviewers to pick their battles, so to speak. 45% was enough to get to the next round and scoring above 65% meant an HR round directly.

Round 2 - One-on-one 

(7 Questions)

  • Q1. How can multithreading be implemented in a Java microservices application?
  • Ans. 

    Multithreading in Java microservices can be implemented using Java's built-in threading capabilities.

    • Use Java's Executor framework to manage threads in a microservices application.

    • Implement asynchronous processing using CompletableFuture to improve performance.

    • Consider using thread pools to manage resources efficiently.

    • Use synchronized blocks or locks to handle shared resources safely.

    • Leverage Java's concurrent data st...

  • Answered by AI
  • Q2. Sort a map of employees and their corresponding salaries using java streams.
  • Ans. 

    Sort a map of employees and their corresponding salaries using Java streams.

    • Use entrySet() to get a stream of key-value pairs from the map.

    • Use sorted() with a comparator to sort the stream based on salaries.

    • Collect the sorted stream back into a LinkedHashMap to maintain the order.

  • Answered by AI
  • Q3. What is the conditional property of Spring beans and how is it configured?
  • Ans. 

    Conditional property in Spring beans allows for conditional bean creation based on specified conditions.

    • Conditional property is used to conditionally create beans based on certain conditions.

    • It is configured using @Conditional annotation on the bean definition class.

    • Examples include @ConditionalOnProperty, @ConditionalOnClass, @ConditionalOnMissingBean, etc.

  • Answered by AI
  • Q4. What is the request filter for API requests and how is it configured to utilise different forms of authentication?
  • Ans. 

    Request filter for API requests is a mechanism to intercept and process incoming requests before they reach the intended endpoint.

    • Request filters can be implemented using frameworks like Spring Security in Java.

    • They can be configured to support different forms of authentication such as basic authentication, OAuth, JWT, etc.

    • Authentication mechanisms can be specified in the filter configuration to validate incoming reque...

  • Answered by AI
  • Q5. How do you enable pagination in responses from a REST API ?
  • Ans. 

    Pagination in REST API responses can be enabled by using query parameters like 'page' and 'limit'.

    • Use query parameters like 'page' and 'limit' to specify the page number and number of items per page.

    • Implement logic in the backend to fetch and return the appropriate subset of data based on the page and limit values.

    • Include metadata in the response to indicate total number of items and current page number.

    • Example: /api/u...

  • Answered by AI
  • Q6. How would you implement a JUnit test for a REST API that you have developed?
  • Ans. 

    Implementing JUnit test for a REST API

    • Create a test class for the REST API endpoints

    • Use @RunWith(SpringRunner.class) and @SpringBootTest annotations

    • MockMvc to perform HTTP requests and validate responses

    • Use @Autowired to inject dependencies for testing

    • Assert statements to verify expected results

  • Answered by AI
  • Q7. How does the Circuit Breaker design pattern work?
  • Ans. 

    Circuit Breaker design pattern is used to prevent a system from repeatedly trying to execute an operation that is likely to fail.

    • Circuit Breaker monitors the number of failures when calling a remote service

    • If the failures exceed a certain threshold, the Circuit Breaker trips and stops further calls to the service

    • After a specified time, the Circuit Breaker allows a limited number of calls to test if the service is avail...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree interview:
  • Java
  • Spring
  • Maven
  • Microservices
  • Design Patters
  • REST API
Interview preparation tips for other job seekers - The interviewers are knowledgeable and fairly technical. Be prepared to answer follow up questions based on your answers.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. What are the fundamental concepts of Object-Oriented Programming (OOP)?
  • Q2. What is polymorphism, and how can it be achieved in programming?
  • Q3. What is the concept of constructor overloading in object-oriented programming?
  • Q4. Write a program to print the unique characters from a given string.
  • Q5. What are the SOLID principles in software development?
  • Q6. What design patterns do you utilize in your work?
  • Q7. What is a REST API?
  • Q8. What is the Document Object Model (DOM)?
  • Q9. What is the Virtual DOM?
  • Q10. What is a single-page web application (SPA)?
  • Q11. What are decorators in Angular, and what are their types?
  • Q12. What are pipes in Angular, and how are they used?

Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

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

(5 Questions)

  • Q1. What is the difference between Regression Testing and Smoke Testing?
  • Ans. 

    Regression Testing is testing the application to ensure new code changes have not affected existing functionality, while Smoke Testing is a preliminary test to check if the software build is stable enough for further testing.

    • Regression Testing is performed after code changes to ensure that existing functionality is not impacted.

    • Smoke Testing is a quick test to check if the software build is stable enough for further te...

  • Answered by AI
  • Q2. What is the bug life cycle?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing bugs in software development.

    • Bug identification: Bugs are identified by testers during testing.

    • Bug reporting: Testers report bugs to developers with detailed information.

    • Bug fixing: Developers resolve the reported bugs.

    • Bug retesting: Testers verify if the fixed bugs are resolved.

    • Bug closing: Once the bug is confirmed fixed, it is cl...

  • Answered by AI
  • Q3. Could you explain the automation framework you used in your last project?
  • Ans. 

    I used a keyword-driven automation framework in my last project.

    • The framework was based on keywords that represented actions or functionalities.

    • Test scripts were written using these keywords to perform automated tests.

    • The framework allowed for easy maintenance and scalability of test scripts.

    • It provided flexibility to easily add new test cases or modify existing ones.

    • Example: Keywords like 'click', 'inputText', 'verify...

  • Answered by AI
  • Q4. What is the difference between the `gettext()` and `getAttribute()` methods in Selenium?
  • Ans. 

    gettext() is used to retrieve text from a web element, while getAttribute() is used to retrieve the value of an attribute of a web element.

    • gettext() retrieves the visible text displayed on a web element, such as a button or a link.

    • getAttribute() retrieves the value of a specified attribute of a web element, such as 'href' for a link or 'value' for an input field.

    • Example: Using gettext() to retrieve the text displayed o...

  • Answered by AI
  • Q5. Write a java program to replace a specific character at a specified index?
  • Ans. 

    Java program to replace a specific character at a specified index in an array of strings.

    • Create a method that takes in the array of strings, index, and character to replace as parameters.

    • Use StringBuilder to modify the string at the specified index.

    • Return the updated array of strings.

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. What is the difference between absolute and relative XPath?
  • Ans. 

    Absolute XPath starts from the root node, while relative XPath starts from any node in the XML structure.

    • Absolute XPath starts with a single forward slash (/) and always starts from the root node of the XML document.

    • Relative XPath does not start with a forward slash and can start from any node in the XML document.

    • Absolute XPath is more brittle as any changes in the structure of the XML document can break the XPath, whi...

  • Answered by AI
  • Q2. What is the average number of test cases you automate on a daily basis?
  • Ans. 

    The average number of test cases automated daily varies depending on complexity and scope of testing.

    • The number of test cases automated daily can range from a few to dozens, depending on the project requirements.

    • Factors such as the size of the application, level of automation already in place, and availability of resources can impact the daily automation rate.

    • For example, in a small project with limited scope, an engin...

  • Answered by AI
  • Q3. What is the difference between the Verify and Assert commands?
  • Ans. 

    Verify is used to validate the condition of a test case, while Assert is used to validate the result of a test case.

    • Verify is used to check if a condition is true without stopping the execution of the test case.

    • Assert is used to check if a condition is true and if not, it stops the execution of the test case.

    • Verify is typically used for non-critical verifications, while Assert is used for critical verifications.

    • Example...

  • Answered by AI
  • Q4. What is the difference between implicit waits and explicit waits in automated testing?
  • Ans. 

    Implicit waits are applied globally and wait for a certain amount of time before throwing an exception, while explicit waits are applied to specific elements and wait for a certain condition to be met.

    • Implicit waits are set once and apply to all elements in the test script

    • Explicit waits are applied to specific elements and wait for a certain condition to be met

    • Implicit waits wait for a certain amount of time before thr...

  • Answered by AI
  • Q5. How can you handle frames in Selenium?
  • Ans. 

    Frames in Selenium can be handled using switchTo() method to navigate between frames.

    • Use driver.switchTo().frame() method to switch to a frame by index, name or WebElement

    • Use driver.switchTo().parentFrame() method to switch back to the parent frame

    • Use driver.switchTo().defaultContent() method to switch to the main content of the page

  • Answered by AI
  • Q6. Write a java program to copy an array by iteration the array
  • Ans. 

    Java program to copy an array by iterating through it

    • Create a new array with the same length as the original array

    • Use a for loop to iterate through the original array and copy each element to the new array

    • Return the new copied array

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?
  • Ans. 

    I am looking for a competitive salary that reflects my experience and skills in the quality engineering field.

    • Research industry standards for quality engineering salaries

    • Consider your level of experience and expertise

    • Factor in location and cost of living

    • Be prepared to negotiate based on benefits and opportunities for growth

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. All Manual testings
  • Q2. Code for a Start pattern
  • Ans. 

    Code for a Start pattern

    • Use nested loops to print the pattern

    • Increment the number of stars in each row

    • Use a combination of spaces and stars to create the pattern

  • Answered by AI
  • Q3. Code for reverse string
  • Ans. 

    Code to reverse a string in an array of strings

    • Iterate through each string in the array

    • For each string, use a loop to reverse the characters

    • Store the reversed string back in the array

  • Answered by AI
  • Q4. Code to start Web browser,go to a specific url and find a element and display
  • Ans. 

    Use Selenium WebDriver to start a web browser, navigate to a specific URL, find an element, and display it.

    • Use Selenium WebDriver to automate browser actions

    • Instantiate a WebDriver object and open a browser

    • Use the get() method to navigate to the specified URL

    • Locate the desired element using findElement() method

    • Retrieve and display the element's text or attributes

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. About project,roles and responsibilities
  • Q2. Steps to start Mobile automation
  • Ans. 

    To start mobile automation, first identify the tools and frameworks, set up the testing environment, create test cases, and execute tests.

    • Identify the tools and frameworks suitable for mobile automation (e.g. Appium, Selenium)

    • Set up the testing environment with necessary software and devices

    • Create test cases based on requirements and user scenarios

    • Execute tests on different mobile devices and platforms to ensure compat...

  • Answered by AI
  • Q3. Client meeting to handle them
  • Ans. 

    Effectively managing client meetings requires clear communication, active listening, and problem-solving skills.

    • Prepare an agenda to keep the meeting focused and efficient.

    • Actively listen to client concerns and ask clarifying questions.

    • Provide clear updates on project status and quality metrics.

    • Use real-life examples to illustrate how issues were resolved in the past.

    • Follow up with a summary email to reinforce key poin...

  • Answered by AI
  • Q4. Why you want to join us
  • Ans. 

    I am excited about the opportunity to contribute my expertise in quality engineering to a dynamic and innovative team.

    • I am impressed by the company's reputation for excellence in quality standards.

    • I am excited about the chance to work on cutting-edge projects and technologies.

    • I believe my skills and experience align well with the company's goals and values.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiable
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

  • Q1. What challenges did you face?
  • Q2. What previous experiences have you had?

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree interview?
LTIMindtree interview process usually has 2-3 rounds. The most common rounds in the LTIMindtree interview process are Technical, HR and Aptitude Test.
How to prepare for LTIMindtree 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 SQL, Python, Javascript, Java and Agile.
What are the top questions asked in LTIMindtree interview?

Some of the top questions asked at the LTIMindtree interview -

  1. 1) If you are given a card with 1-1000 numbers and there are 4 boxes. Card no 1...read more
  2. there are 3 wheels. each can travel only 5kms. everytime you want to use the wh...read more
  3. 1. diff b/w findelements vs findelement? 2. set vs map? 3. wap for occurences o...read more
What are the most common questions asked in LTIMindtree HR round?

The most common HR questions asked in LTIMindtree interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your strengths and weakness...read more
  3. Why are you looking for a chan...read more
How long is the LTIMindtree interview process?

The duration of LTIMindtree interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 3.1k interview experiences

Difficulty level

Easy 17%
Moderate 77%
Hard 6%

Duration

Less than 2 weeks 56%
2-4 weeks 29%
4-6 weeks 9%
6-8 weeks 3%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.5
 • 11.3k Interviews
Accenture Interview Questions
3.7
 • 8.8k Interviews
Infosys Interview Questions
3.6
 • 8k Interviews
Wipro Interview Questions
3.7
 • 6.2k Interviews
Cognizant Interview Questions
3.7
 • 6k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.5k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
View all

LTIMindtree Reviews and Ratings

based on 23.3k reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.3

Salary

3.6

Job security

3.6

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 23.3k Reviews and Ratings
SAP Security Hana Consultant

Mumbai

5-10 Yrs

Not Disclosed

SAP Security BTP Consultant

Mumbai

6-11 Yrs

Not Disclosed

Sap Security Consultant

Bangalore / Bengaluru,

Delhi/Ncr

+1

6-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
22.3k salaries
unlock blur

₹7.6 L/yr - ₹22.4 L/yr

Software Engineer
16.4k salaries
unlock blur

₹3.9 L/yr - ₹8.9 L/yr

Technical Lead
6.4k salaries
unlock blur

₹17.3 L/yr - ₹31.4 L/yr

Module Lead
5.6k salaries
unlock blur

₹11.9 L/yr - ₹22 L/yr

Senior Engineer
4.7k salaries
unlock blur

₹6.2 L/yr - ₹14.8 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