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.9

based on 19.9k Reviews

Filter interviews by

LTIMindtree Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top LTIMindtree Interview Questions and Answers

View all 1.9k questions

LTIMindtree Interview Experiences

Popular Designations

2.8k interviews found

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

(2 Questions)

  • Q1. What is opps? Can you please explain each of them?
  • Q2. What is difference between private and static classes in c#?

Interview Preparation Tips

Interview preparation tips for other job seekers - Ntg

Top LTIMindtree Software Engineer Interview Questions and Answers

Q1. Find prime numbersYou are given a positive integer ‘N’. Your task is to print all prime numbers less than or equal to N. Note: A prime number is a natural number that is divisible only by 1 and itself. Example - 2, 3, 17, etc. You can assum... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Haldia Institute of Technology (HIT) and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Medium level of question

Round 2 - HR 

(2 Questions)

  • Q1. Can you provide an introduction about yourself?
  • Q2. What is the process for reallocating resources?

Implementation Consultant Interview Questions asked at other Companies

Q1. In a factory as per govt rule how much leave is applicable
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Database related questions
  • Q2. Sql queries and performance tuning questions.

Top LTIMindtree Senior Data Engineer Interview Questions and Answers

Q1. 7) How does query acceleration speed up query processing?
View answer (2)

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Oops concep question

Round 2 - Coding Test 

Javascript coding for finiding the palindrome number

Round 3 - HR 

(1 Question)

  • Q1. Where do u see yourself in 5 years?

Top LTIMindtree Software Developer Interview Questions and Answers

Q1. Sum of squares of first N natural numbersYou are given an integer 'N'. You need to find the sum of squares of the first 'N' natural numbers. For example: If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30. Input Format: The first li... read more
View answer (6)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

LTIMindtree interview questions for popular designations

 Software Engineer

 (306)

 Senior Software Engineer

 (201)

 Software Developer

 (88)

 Senior Specialist

 (75)

 Graduate Engineer Trainee (Get)

 (73)

 Module Lead

 (72)

 Graduate Trainee

 (62)

 Data Engineer

 (55)

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

Basic question of aptitude.

Round 2 - Coding Test 

Programs on conditional statements and object-oriented programming (OOP).

Round 3 - HR 

(2 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Can you work under stressful circumstances?

Top LTIMindtree Graduate Engineer Interview Questions and Answers

Q1. What is the Difference between C & C++?
View answer (1)

Graduate Engineer Interview Questions asked at other Companies

Q1. What is Finite Element Analysis? Explain using examples.
View answer (1)

Get interview-ready with Top LTIMindtree Interview Questions

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

I applied via Naukri.com

Round 1 - Technical 

(7 Questions)

  • Q1. What is abstraction in c#
  • Ans. 

    Abstraction in C# is the process of hiding the implementation details and showing only the necessary features of an object.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving maintainability of the code

    • In C#, abstraction is achieved using abstract classes and interfaces

  • Answered by AI
  • Q2. What is xpath and its type.
  • Ans. 

    XPath is a language used for navigating through XML documents and selecting nodes based on their attributes or values.

    • XPath stands for XML Path Language.

    • It is used to navigate through elements and attributes in an XML document.

    • There are two types of XPath: Absolute XPath and Relative XPath.

    • Absolute XPath starts from the root node, denoted by a single forward slash (/).

    • Relative XPath starts from the current node, denote

  • Answered by AI
  • Q3. Can we change wait time during runtime.
  • Ans. 

    Yes, wait time can be changed during runtime by adjusting the code logic or configuration settings.

    • Wait time can be changed by modifying the code to include dynamic wait times based on certain conditions.

    • Configuration settings in the application or system can also be adjusted to change wait times.

    • For example, in automated testing scripts, wait times can be adjusted based on the response time of the application being te

  • Answered by AI
  • Q4. How to hand window in selenium
  • Ans. 

    To handle windows in Selenium, you can use the switchTo() method to switch between windows.

    • Use getWindowHandles() to get all window handles

    • Use switchTo().window() to switch to a specific window handle

    • Perform actions on the desired window

  • Answered by AI
  • Q5. How to hand scroll bar.
  • Ans. 

    To handle a scroll bar, simply click and drag the scroll bar up or down to navigate through a webpage or document.

    • Click on the scroll bar and drag it up or down to move through the content.

    • Use the scroll wheel on your mouse to scroll up or down.

    • On touch devices, swipe up or down on the screen to scroll.

    • You can also use the arrow keys on your keyboard to scroll up or down.

  • Answered by AI
  • Q6. How to handle popup window.
  • Ans. 

    To handle a popup window, you can use automation tools like Selenium WebDriver to locate and interact with the popup elements.

    • Use Selenium WebDriver to switch to the popup window

    • Identify and interact with elements on the popup window

    • Perform necessary actions on the popup window

    • Switch back to the main window after handling the popup

  • Answered by AI
  • Q7. How to open new tab.
  • Ans. 

    To open a new tab, you can use keyboard shortcuts or mouse clicks depending on the browser you are using.

    • For most browsers, you can open a new tab by pressing Ctrl + T on your keyboard.

    • Alternatively, you can right-click on a link and select 'Open link in new tab' from the context menu.

    • You can also click on the '+' icon next to the existing tabs to open a new tab.

    • Some browsers allow you to open a new tab by pressing Ctr

  • Answered by AI

Skills evaluated in this interview

Top LTIMindtree Junior Engineer - Quality Assurance Interview Questions and Answers

Q1. Can we change wait time during runtime.
View answer (1)

Junior Engineer - Quality Assurance Interview Questions asked at other Companies

Q1. How do you automate filtering and validate it's been filtered as desired?
View answer (1)

Jobs at LTIMindtree

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

(1 Question)

  • Q1. TPRM life cycle
Round 2 - Technical 

(1 Question)

  • Q1. Risk assessment
Round 3 - HR 

(1 Question)

  • Q1. What is the differance between RTO and RPO
  • Ans. 

    RTO stands for Recovery Time Objective, which is the targeted duration of time within which a business process must be restored after a disaster. RPO stands for Recovery Point Objective, which is the maximum tolerable period in which data might be lost due to a disaster.

    • RTO focuses on how quickly a business process needs to be restored after a disaster, while RPO focuses on the maximum amount of data loss that is accep...

  • Answered by AI

Top LTIMindtree Senior Consultant Interview Questions and Answers

Q1. What is BR, difference between after and async How to restrict data visibility without using ACL How to call one function to another in the same script include name How to get number of vowels count present in a string Questions related to ... read more
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Backend Java Developer interview

user image Drunken Engineer

posted on 23 Nov 2021

grdauate trainee Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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

Its an assignment consisting aptitude and techical mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. Give me your self introduction
  • Q2. What is your preferred language
Round 3 - HR 

(2 Questions)

  • Q1. Will to relaocate
  • Q2. Qualities of a leader
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test experience at LTI Mindtree typically encompasses a variety of topics, beginning with basic mathematics such as least common multiple (LCM) and highest common factor (HCF). The difficulty of the questions varies from easy to moderate to difficult.

Round 2 - Technical 

(4 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP) in Java?
  • Ans. 

    Key concepts of OOP in Java include classes, objects, inheritance, polymorphism, encapsulation, and abstraction.

    • Classes: Blueprint for creating objects, containing attributes and methods.

    • Objects: Instances of classes that encapsulate data and behavior.

    • Inheritance: Allows a class to inherit attributes and methods from another class.

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

    • Encapsulatio...

  • Answered by AI
  • Q2. What are the key concepts of cloud computing?
  • Ans. 

    Key concepts of cloud computing include virtualization, scalability, on-demand self-service, and pay-per-use pricing model.

    • Virtualization allows for the creation of virtual machines on a physical server, enabling efficient resource utilization.

    • Scalability refers to the ability to easily increase or decrease resources based on demand, ensuring optimal performance.

    • On-demand self-service allows users to provision resource...

  • Answered by AI
  • Q3. What is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents outside code from directly accessing an object's internal data.

    • Encapsulation promotes code reusability and modularity by grouping related data and methods together.

    • Examp...

  • Answered by AI
  • Q4. Recursion in java implementation
  • Ans. 

    Recursion in Java is a programming technique where a method calls itself to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • A base case is needed to stop the recursion and prevent infinite loops.

    • Example: Factorial calculation using recursion - int factorial(int n) { return (n == 0) ? 1 : n * factorial(n-1); }

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. How flexible are you with working at different locations?
  • Ans. 

    I am very flexible with working at different locations and have no issues with commuting or relocating if required.

    • I have experience working at multiple locations in my previous roles.

    • I am willing to travel for work and adapt to new environments.

    • I understand the importance of being able to work from different locations in order to support the team and meet project requirements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is essential to have a clear understanding of basic concepts and fundamentals, as effective communication is crucial for succeeding in any interview.

Top LTIMindtree Associate Trainee Interview Questions and Answers

Q1. What are the key concepts of Object-Oriented Programming (OOP) in Java?
View answer (1)

Associate Trainee Interview Questions asked at other Companies

Q1. What is the difference between Web Browser and Search Engine?
View answer (1)

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, Agile and Java.
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. 1.data dictionary concept-table creation steps How do you maintain TMG? What is...read more
  3. 5.enhancements What is enhancements? Types of enhancements? How do you find an...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.

LTIMindtree Interview Process

based on 1.6k interviews in last 1 year

Interview experience

4.1
  
Good
View more

People are getting interviews through

based on 1.8k LTIMindtree interviews
Job Portal
Campus Placement
Referral
Company Website
WalkIn
Recruitment Consultant
37%
26%
9%
7%
3%
3%
15% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Mphasis Interview Questions
3.4
 • 779 Interviews
Cyient Interview Questions
3.7
 • 276 Interviews
View all

LTIMindtree Reviews and Ratings

based on 19.9k reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-Life balance

3.4

Salary & Benefits

3.8

Job Security

3.8

Company culture

3.1

Promotions/Appraisal

3.7

Work Satisfaction

Explore 19.9k Reviews and Ratings
AI ML Lead

Chennai

9-12 Yrs

Not Disclosed

Data Sciences - Python AI/ML

Bangalore / Bengaluru

7-10 Yrs

Not Disclosed

GENAI Engineer

Pune

5-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
21.2k salaries
unlock blur

₹4.7 L/yr - ₹18.4 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.8k salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Technical Lead
6.5k salaries
unlock blur

₹9.3 L/yr - ₹36.8 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.1 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview