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 249 questions

LTIMindtree Interview Experiences for Freshers

Popular Designations

357 interviews found

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

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a campus placement during my second year of Mtech. So they followed the usual standard format. Aptitude and personality quiz.

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself favourite subject Python Libraries Projects Data science (NLP)
Round 3 - HR 

(1 Question)

  • Q1. The usual tell me about yourself and some casual conversation.

Artificial Intelligence Intern Interview Questions asked at other Companies

Q1. Which AI field you are interested?
View answer (4)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS Basics just prepare whats on your resume
  • Q2. Explain basic oops concept
  • Ans. 

    OOPs concepts are the foundation of object-oriented programming, focusing on principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

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

    • Abstraction: Hiding the com...

  • Answered by AI

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at VR Siddharth Engineering College, Vijayawada and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Assignment 

Aptitude, Versant, OS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare most of the fundamental concepts related to your subject.

Pega Developer Interview Questions asked at other Companies

Q1. What is difference between flow and flow action
View answer (4)

Software Engineer Interview Questions & Answers

user image Abhishek kumar Gupta

posted on 9 Jan 2025

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apri test first round

Round 2 - Coding Test 

Two easy level hackerrank coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Great place if you want to grow in your early career in terms of knowledge not in terms of salary

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

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
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between final finally finalize
  • Ans. 

    final, finally, and finalize are related keywords in Java with different meanings and usage.

    • final is a keyword used to declare constants, variables, methods, and classes that cannot be changed or extended.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method used in Java to perform cleanup operations on an object before it

  • Answered by AI
  • Q2. Gave code class A { int i = 10; } class B extends A { int i = 20; } public class test{ public static void main (String [] args) { A a = new B(); System.out.println(a.i): } }
  • Ans. 

    The code will output 10 because the variable i is accessed through a reference of class A.

    • When a subclass object is assigned to a superclass reference, the superclass reference can only access the superclass members.

    • In this case, even though the object is of class B, the variable i is accessed from class A.

    • Output: 10

  • Answered by AI
  • Q3. Gave code and asked output class A { static int i = 10; public void inc(){ i++; System.out.println(i); } } public class test{ public static void main (String [] args){ A a = new A(); A b = new B(); a.inc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts tricky code questions only theory wont help.

Skills evaluated in this interview

Automation Engineer Interview Questions asked at other Companies

Q1. 16) What is modbus ? Types of modbus? How many slaves we can connect to one master
View answer (1)

Get interview-ready with Top LTIMindtree Interview Questions

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

I was interviewed in Feb 2024.

Round 1 - Coding Test 

90 Minutes of MCQ and coding test

Round 2 - Technical 

(5 Questions)

  • Q1. Topics on java8, spring boot, Microservices, MySQL.
  • Q2. Explain Streams
  • Ans. 

    Streams in Java are sequences of elements that support functional-style operations.

    • Streams allow for processing sequences of elements in a functional style.

    • They can be created from various data sources like collections, arrays, or I/O channels.

    • Operations on streams can be intermediate (e.g. filter, map) or terminal (e.g. forEach, collect).

    • Streams promote parallel processing and lazy evaluation for improved performance.

    • ...

  • Answered by AI
  • Q3. Working of HashMap
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap uses hashing to store key-value pairs, which allows for fast retrieval of values.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • HashMap allows null keys and null values.

    • HashMap is not synchronized, so it is not thread-safe. To make it thread-safe, you can use ConcurrentHashMap.

    • Exampl...

  • Answered by AI
  • Q4. Spring boot annotations
  • Q5. Spring security

Skills evaluated in this interview

Top LTIMindtree Java Developer Interview Questions and Answers

Q1. Longest Harmonious Subsequence Problem Statement Determine the longest harmonious subsequence within a given array of integers, where the difference between the maximum and minimum elements of the subsequence is exactly 1. Example: Input: A... read more
Add answer

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Jobs at LTIMindtree

View all

Senior Data Engineer Interview Questions & Answers

user image prateek ranjan tripathi

posted on 13 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

SQL and spark code for Fibonacci series

Round 2 - Technical 

(1 Question)

  • Q1. Pyspark optimization technique
  • Ans. 

    One pyspark optimization technique is using broadcast variables to efficiently distribute read-only data across all nodes.

    • Use broadcast variables to efficiently distribute read-only data across all nodes

    • Avoid shuffling data unnecessarily by using partitioning and caching

    • Optimize data processing by using appropriate transformations and actions

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Agile questions

Skills evaluated in this interview

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)

Software Engineer II | Software Engineer Level 1 interview

user image YC ideas

posted on 8 Dec 2021

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How did you manage your projects in your previous org?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company. You can definitely give it a try.

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Maths, communication and logical reasoning

Round 2 - One-on-one 

(1 Question)

  • Q1. General round for basic process knowledge
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager round process related
Round 4 - HR 

(1 Question)

  • Q1. Basic to exert process knowledge
Round 5 - HR 

(1 Question)

  • Q1. Salary negotiation

Order to Cash Analyst Interview Questions asked at other Companies

Q1. What would you do if a customer refuses to pay
View answer (2)

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.7k 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.7k Reviews and Ratings
Senior Specialist - Software Engineering

Mumbai,

Navi Mumbai

8-13 Yrs

Not Disclosed

Senior Specialist - Data Engineering

Kolkata

8-12 Yrs

₹ 15.5-25 LPA

Explore more jobs
Senior Software Engineer
21.3k salaries
unlock blur

₹4.7 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.3 L/yr - ₹36 L/yr

Senior Engineer
4.4k salaries
unlock blur

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