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 Software Engineer Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top LTIMindtree Software Engineer Interview Questions and Answers

  • Q1. Prime Numbers Identification Given a positive integer N , your task is to identify all prime numbers less than or equal to N . Explanation: A prime number is a natural n ...read more
  • Q2. there are 3 wheels. each can travel only 5kms. everytime you want to use the wheel to move forward, you have to use 2 of them. what is the maximum distance you can travel ...read more
  • Q3. What is normalization and what are the different forms of normalization?
View all 181 questions

LTIMindtree Software Engineer Interview Experiences

278 interviews found

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 Nov 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic questions - quantitative, reasoning psychometric.

Round 2 - Technical 

(1 Question)

  • Q1. The interviewer asked basic coding questions, practically took me 5 mins to solve 3 questions. I explained the solution with the pseudocode and then compiled the code.
Round 3 - HR 

(1 Question)

  • Q1. Discussed about my academic projects and my interests.

Interview Preparation Tips

Interview preparation tips for other job seekers - There was a time Mindtree used to be good. Since the merger, employees are treated awfully and they are following the hire and fire culture to increase revenue but are less concerned about the employees. The prime motivation for me to join Mindtree in 2021 was Orchid Training Program for freshers where they train you on a technology for 3 months and then you are deployed to projects. Now the LTI merger has destroyed their image in my eyes.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test with normal level questions

Round 2 - Coding Test 

Two coding questions if cleared LTI offers better package. Else you get base package

Round 3 - HR 

(1 Question)

  • Q1. This was rather easy round with usual SWOT questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Okay to join this organisation but not great experience in terms of salary hikes.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Round 1 - Aptitude Test 

Aptitude and reasoning questions and one coding question and test duriation is 90 mins.

Round 2 - HR 

(2 Questions)

  • Q1. Basic questions on python?
  • Q2. About my project and some question on it?

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - overall the interview was good and it was very basic question on python.
Round 1 - Aptitude Test 

Basic aptitude, reasoning and coding.

Round 2 - Group Discussion 

Discuss about topic given.

Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on preferred programming language.
Round 4 - HR 

(1 Question)

  • Q1. Basic HR questions like about company and why do you like to join Mindtree.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in technical round with basics of Oops concepts and collections(if java)

LTIMindtree interview questions for designations

 Senior Software Engineer

 (211)

 Software Engineer Trainee

 (14)

 Associate Software Engineer

 (9)

 Principal Software Engineer

 (7)

 Software Testing Engineer

 (3)

 Software Development Engineer

 (2)

 Software Engineer Intern

 (2)

 Embedded Software Engineer

 (1)

Software Engineer Interview Questions & Answers

user image Koti Lingam.Dintakurthi

posted on 25 Jul 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Question are very tricky .

Round 2 - Technical 

(1 Question)

  • Q1. Regarding technical question on java, html, css, sql.
Round 3 - HR 

(1 Question)

  • Q1. Are you relocated? Self introduction, etc. It was very cool going no pressure

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare get more knowledge whatever you prepare.

Get interview-ready with Top LTIMindtree Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at VNR Vignan Jyothi Institute of Engineering & Technology, Ranga Reddy and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

3 coding questions , from array and string manipulation

Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts, DSA a
Round 3 - HR 

(1 Question)

  • Q1. Basic question , tell me about your self etc

Software Engineer Jobs at LTIMindtree

View all

I applied via Telegram and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself?
  • Q2. What is linked list?
  • Ans. 

    A linked list is a linear data structure where each element is a separate object with a pointer to the next element.

    • Consists of nodes that contain data and a pointer to the next node

    • Can be singly or doubly linked

    • Used for dynamic memory allocation, implementing stacks and queues, and more

  • Answered by AI
  • Q3. What is bubble sorting?
  • Ans. 

    Bubble sorting is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sorting is a comparison-based algorithm.

    • It is named as bubble sort because smaller elements bubble to the top of the list.

    • It has a worst-case and average-case time complexity of O(n^2).

    • Example: [5, 3, 8, 4, 2] -> [3, 5, 8, 4, 2] -> [3, 5, 4, 8, 2] -> [3, 5,...

  • Answered by AI
  • Q4. Write a program on bubble sort and explain it?
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Bubble sort is a comparison-based algorithm

    • It works by comparing each pair of adjacent elements and swapping them if they are in the wrong order

    • The algorithm repeats this process until no more swaps are needed

    • It has a worst-case and average complexity of O(n^2)

    • Exampl...

  • Answered by AI
  • Q5. What is heap sort?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • It divides the input into a sorted and an unsorted region.

    • It repeatedly extracts the largest element from the unsorted region and inserts it into the sorted region.

    • It has a time complexity of O(n log n) and is not stable.

    • Example: [8, 5, 3, 1, 9, 6, 0, 7, 4, 2] -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q6. Which is the fastest sorting algorithm?
  • Ans. 

    The fastest sorting algorithm is QuickSort.

    • QuickSort has an average time complexity of O(n log n).

    • It is a divide and conquer algorithm that recursively partitions the array.

    • It is widely used in practice due to its efficiency.

    • Other fast sorting algorithms include MergeSort and HeapSort.

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

    Constructor is a special method that is called when an object is created.

    • Constructors have the same name as the class they belong to.

    • They are used to initialize the object's state.

    • They can be overloaded to accept different parameters.

    • If a class does not have a constructor, a default constructor is provided by the compiler.

  • Answered by AI
  • Q8. What is Garbage Collector?
  • Ans. 

    Garbage Collector is an automatic memory management system that frees up memory occupied by objects that are no longer in use.

    • Garbage Collector is a part of the Java Virtual Machine that automatically manages memory allocation and deallocation.

    • It identifies objects that are no longer in use and frees up the memory occupied by them.

    • Garbage Collector helps prevent memory leaks and improves the performance of the applicat...

  • Answered by AI
  • Q9. Being a Non-IT student you do you want to join Software side?
  • Q10. What is Run-Time polymorphism?
  • Ans. 

    Run-Time polymorphism is the ability of an object to take on many forms at runtime.

    • It is achieved through method overriding and virtual functions.

    • It allows a subclass to provide its own implementation of a method that is already provided by its parent class.

    • It is also known as dynamic polymorphism.

    • Example: Animal class with a virtual method 'makeSound', and subclasses Dog and Cat that override the 'makeSound' method.

    • Wh...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the Data structures, Oops concepts and project done in final year.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2022. There were 4 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 - Coding Test 

Convert integer value to corresponding roman number .

Round 3 - Technical 

(4 Questions)

  • Q1. Basic Java programming , Oops concept , basic Sql query and resume project related question .
  • Q2. Two sum leetcode question
  • Q3. Constructor , this keyword in java
  • Ans. 

    Constructor is a special type of method used to initialize objects in Java.

    • Constructors have the same name as the class they belong to.

    • They do not have a return type, not even void.

    • The 'this' keyword in Java is used to refer to the current object.

    • Example: public class Car { public Car() { this.make = 'Toyota'; } }

  • Answered by AI
  • Q4. Inheritance ,polymorphism ,abstraction etc...
Round 4 - HR 

(1 Question)

  • Q1. Why you want to Join LTI, strength and weakness , are you comfortable to sign 2 year bonds , are you looking to go for higher studies near future.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core Java programming , Oops concept theory along with real life example , basic dbms theory and along with sql query.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Rtr. Kajal Dusseja

posted on 16 Sep 2022

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 

(1 Question)

  • Q1. What is XML? How to parse XML in Java?
  • Ans. 

    XML is a markup language used to store and transport data.

    • XML stands for eXtensible Markup Language

    • It uses tags to define elements and attributes to provide additional information

    • XML can be parsed in Java using libraries like DOM, SAX, and StAX

    • DOM creates a tree structure of the XML document in memory

    • SAX reads the XML document sequentially and triggers events for each element

    • StAX is a combination of DOM and SAX, allowi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear concepts and don't stay quiet try to answer as much possible

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed before Oct 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic questions about Java and SQL
  • Q2. Normalisation in SQL and functions in Java
  • Ans. 

    Normalization in SQL involves organizing data in a database to reduce redundancy and improve data integrity. Functions in Java are reusable blocks of code that perform specific tasks.

    • Normalization in SQL involves breaking down data into smaller, more manageable tables to reduce redundancy and improve data integrity

    • Functions in Java are reusable blocks of code that perform specific tasks and can be called multiple times...

  • Answered by AI
  • Q3. Method overloading inJava

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - Be confident with answers

Skills evaluated in this interview

LTIMindtree Interview FAQs

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

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

  1. there are 3 wheels. each can travel only 5kms. everytime you want to use the wh...read more
  2. How will you write a program to . For example, cr...read more
  3. What is the difference between Array and LinkedList? What are binary search, co...read more
How long is the LTIMindtree Software Engineer interview process?

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

Tell us how to improve this page.

LTIMindtree Software Engineer Interview Process

based on 241 interviews

5 Interview rounds

  • Aptitude Test Round
  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
View more
LTIMindtree Software Engineer Salary
based on 16.2k salaries
₹2 L/yr - ₹10 L/yr
29% less than the average Software Engineer Salary in India
View more details

LTIMindtree Software Engineer Reviews and Ratings

based on 1.8k reviews

3.8/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.2

Salary

3.9

Job security

3.8

Company culture

3.0

Promotions

3.6

Work satisfaction

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

₹5.1 L/yr - ₹18.8 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.6k salaries
unlock blur

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