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, Process, and Tips for Freshers

Updated 14 Feb 2025

Top LTIMindtree Interview Questions and Answers for Freshers

View all 253 questions

LTIMindtree Interview Experiences for Freshers

Popular Designations

357 interviews found

I applied via campus placement at Nitte Meenakshi Institute of Technology, Bangalore and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

(1 Question)

It consists of aptitude, basic technical questions and 4 coding questions

  • Q1. Write a Program to print the following pattern: * * * * * * * * * * * * * * *
  • Ans. 

    Program to print a pattern of stars in a pyramid shape

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of stars in each row

  • Answered by AI
Round 2 - Technical 

Asked about resume based questions
Then, asked about basic c,c++ questions and oops concept
Then scenario based questions and finally ended with asking previous day solved coding questions

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.E. from NMIT.Mindtree interview preparation:Tips for other job seekers - Study oops concepts and c,c++ basics like data types some concepts related to data structureFinal outcome of the interviewSelected

Skills evaluated in this interview

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 number greater than 1 that has no positive divisors other than 1 and itsel... read more
Add answer

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 (181)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

This was an elimination round

Round 2 - Coding Test 

Easy to Intermediate Question

Round 3 - Technical 

(1 Question)

  • Q1. Basic Oops Concepts Data Structures Discussion on Projects Basic Computer Science Questions

Top LTIMindtree Senior Software Engineer Interview Questions and Answers

Q1. in Angular what is services and how to call service api, and how bind our data with in component.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. CI/CD pipeline definitions

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)

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

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 number greater than 1 that has no positive divisors other than 1 and itsel... read more
Add answer

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 (181)

LTIMindtree interview questions for popular designations

 Software Engineer

 (316)

 Senior Software Engineer

 (211)

 Software Developer

 (92)

 Senior Specialist

 (77)

 Graduate Engineer Trainee (Get)

 (73)

 Module Lead

 (72)

 Graduate Engineer

 (70)

 Graduate Trainee

 (66)

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

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 number greater than 1 that has no positive divisors other than 1 and itsel... read more
Add answer

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 (181)

Get interview-ready with Top LTIMindtree Interview Questions

I applied via PrepInsta and was interviewed in Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

(1 Question)

The first round is divided into two major sections, one is cognitive aptitude and the other is coding round.

In Aptitude section there are questions from numerical aptitude and verbal. There are questions from number systems, time and work, clock, LCM and HCF etc.
The questions are moderate level.

In coding there were 5 questions, 2 easy, 2 med and 1 hard.

  • Q1. Eliminate repeated array from the given string
  • Ans. 

    To eliminate repeated array from a given string

    • Convert the string to an array using split() method

    • Use Set object to remove duplicates from the array

    • Convert the array back to string using join() method

  • Answered by AI
Round 2 - Technical 

(4 Questions)

It was conducted on webex platform and the duration was 25 minutes. It is an interview round, and they asked a lot of technical and coding questions in this round.

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.

    • I have a Bachelor's degree in Computer Science from XYZ University.

    • I have worked on projects using Spring Boot, React, and Angular frameworks.

    • I am experienced in Agile methodology and have worked in Scrum teams.

    • I am passionate about learning new technologies and solving complex problems.

    • In my free time, I enjoy ...

  • Answered by AI
  • Q2. Which coding language are you comfortable with?
  • Ans. 

    I am comfortable with multiple coding languages including Java, Python, and C++.

    • Proficient in Java, Python, and C++

    • Experience with web development languages such as HTML, CSS, and JavaScript

    • Familiarity with scripting languages like Bash and PowerShell

    • Comfortable with SQL and NoSQL databases

    • Knowledge of machine learning libraries like TensorFlow and Keras

  • Answered by AI
  • Q3. 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
  • Q4. Do you know about sorting algorithms? What are the types of sorting algorithms? Write them,
  • Ans. 

    Sorting algorithms are used to arrange data in a specific order. There are various types of sorting algorithms.

    • Types of sorting algorithms include: bubble sort, selection sort, insertion sort, merge sort, quick sort, heap sort, counting sort, radix sort, and bucket sort.

    • Bubble sort compares adjacent elements and swaps them if they are in the wrong order.

    • Selection sort selects the smallest element and swaps it with the ...

  • Answered by AI
Round 3 - HR 

After successful clearance of round 2 you will get a chance to appear for round 3 i.e online HR interview.
This is also performed on the WebEx platform. This round usually goes for about 15-18 min. In this round they asked my hobbies, my strength and basic HR questions. Then they asked what you know about the company I was prepared for this question so I answered very well, he was impressed.

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is B.Tech from Ujjain Engineer college.Mindtree interview preparation:Tips for other job seekers - Prepare well for the rounds. In Mindtree if you can clear the online technical round, then you are selected.Final outcome of the interviewSelected

Skills evaluated in this interview

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 (169)

I applied via Campus Placement and was interviewed in May 2022. There were 4 interview rounds.

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 - Aptitude Test 

Easy to clear the aptitude round with some preparations.

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about your self
Round 4 - HR 

(1 Question)

  • Q1. Who is your role model

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for everything before applying to the job. Do background work about company and interviewers

Top LTIMindtree Engineer Trainee Interview Questions and Answers

Q1. What is the interface in Java? Provide an example, how you use it?
View answer (1)

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Software Engineer interview

user image QUANT MASTERS

posted on 20 Mar 2022

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mcq based on java, IT and maths

Round 2 - Technical 

(1 Question)

  • Q1. Graphs, trees and array
Round 3 - HR 

(1 Question)

  • Q1. Ask about company

SAP Basis Administrator Interview Questions asked at other Companies

Q1. If there are 3 instances in your system ,to stop a particular instance through os level what will you do
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude c c++ sql ds

Round 2 - Technical 

(1 Question)

  • Q1. Java html css sql

Interview Preparation Tips

Interview preparation tips for other job seekers - java

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (5)

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree interview for freshers?
LTIMindtree interview process for freshers usually has 2-3 rounds. The most common rounds in the LTIMindtree interview process for freshers are Technical, Aptitude Test and HR.
How to prepare for LTIMindtree interview for freshers?
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 Excel, Background Verification, Communication Skills, Data Validation and International Voice Process.
What are the top questions asked in LTIMindtree interview for freshers?

Some of the top questions asked at the LTIMindtree interview for freshers -

  1. How do you know about this type of ID related issues because you are not comple...read more
  2. Can we write int func() and int func(int a) in a single cla...read more
  3. How can a circuler cake can be cut into 8 equal pieces with 3 cuts on...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 for Freshers

based on 191 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
View all

LTIMindtree Reviews and Ratings

based on 20.8k reviews

3.8/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.3

Salary

3.7

Job security

3.7

Company culture

3.0

Promotions

3.6

Work satisfaction

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

₹5.1 L/yr - ₹18.7 L/yr

Software Engineer
16.2k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Module Lead
6.7k salaries
unlock blur

₹7 L/yr - ₹25.5 L/yr

Technical Lead
6.4k salaries
unlock blur

₹9.4 L/yr - ₹36 L/yr

Senior Engineer
4.4k salaries
unlock blur

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