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

Updated 30 May 2025

79 Interview questions

A Software Developer was asked
Q. Projects and technologies known
Ans. 

I have worked on projects involving web development using technologies such as JavaScript, React, Node.js, and MongoDB.

  • Web development projects

  • JavaScript

  • React

  • Node.js

  • MongoDB

A Software Developer was asked
Q. Different datatypes
Ans. 

Different datatypes refer to the various categories of data that can be stored and manipulated in a programming language.

  • Datatypes include integers, floating point numbers, strings, booleans, arrays, and objects.

  • Examples: int x = 5; float y = 3.14; string name = 'John'; bool isTrue = true; array numbers = [1, 2, 3]; object person = {name: 'Alice', age: 25};

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. Sorting and searching techniques in java
Ans. 

Sorting and searching techniques in Java

  • Sorting techniques: Bubble sort, Selection sort, Insertion sort, Merge sort, Quick sort

  • Searching techniques: Linear search, Binary search

  • Example: Sorting an array of strings using merge sort

  • Example: Searching for a specific string using binary search

A Software Developer was asked
Q. What is sorting
Ans. 

Sorting is the process of arranging items in a specific order, typically in ascending or descending order.

  • Sorting helps in organizing data for easier retrieval and analysis.

  • Common sorting algorithms include bubble sort, merge sort, and quick sort.

  • Example: Sorting a list of numbers in ascending order: [5, 2, 8, 1] -> [1, 2, 5, 8]

What people are saying about LTIMindtree

View All
a senior software engineer
3d
Need clarity on Ltimindtree's Variable pay
Hi, I have received an Offer from LTIMINDTREE, and there offering 24L(5Yoe) P3, 21.8L as Fixed and 2L as variable pay monthly. Client is Amazon I also have another offer with HTC, have two questions on the vp. The HR is trying to say that the VP is like non performance, regardless of performance you'll get it unless other companies which offer it based on performance...is this tru ? Then if I'm receiving a hike next year, what it'll be based on ?, will the 2.2L VP apply again next year. Hows the hike and promotion ? LTIMindtree
FeedCard Image
Got a question about LTIMindtree?
Ask anonymously on communities.
A Software Developer was asked
Q. Sorting in a dictionary
Ans. 

Sorting in a dictionary

  • Use sorted() function to sort the dictionary by keys or values

  • Use lambda function to sort the dictionary by custom key

  • Use OrderedDict() to maintain the order of the sorted dictionary

A Software Developer was asked
Q. 

Problem: Count Even or Odd in Array

Tanmay and Rohit are best buddies. Tanmay gives Rohit a challenge involving an array of N natural numbers. The task is to perform and answer a series of queries on the a...

Ans. 

Count the number of even or odd numbers in a range of an array based on given queries.

  • Create an array to store the input numbers.

  • Iterate through the queries and update or count even/odd numbers based on the query type.

  • Output the count of even or odd numbers for each query of type 1 or 2.

A Software Developer was asked
Q. 

Matrix Multiplication Task

Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipli...

Ans. 

Implement a function to multiply two sparse matrices and return the resulting matrix.

  • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication

  • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently

  • Handle the edge cases such as empty matrices or matrices with all zero elements

  • Ensure the dimensions of the matrices are compa...

Are these interview questions helpful?
A Software Developer was asked
Q. What is a merge join in SQL?
Ans. 

A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

  • Merge join is used when joining two large datasets that are already sorted.

  • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

  • The join condition must be an equality condition.

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = tab...

A Software Developer was asked
Q. 

Prime Numbers Problem Statement

Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

Input:

N = 10

Output:

2 3 5 7

Example:

Input:
N = 20
Outp...
Ans. 

Implement a function to return all prime numbers less than or equal to a given positive integer N.

  • Create a function that takes a positive integer N as input

  • Iterate from 2 to N and check if each number is prime

  • Use a helper function to determine if a number is prime

  • Return an array of all prime numbers less than or equal to N

A Software Developer was asked
Q. 

Nth Fibonacci Number Problem Statement

Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

Input:

...
Ans. 

Calculate the Nth Fibonacci number efficiently using dynamic programming.

  • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

  • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

  • Ensure the input N is within the constraints 1 <= N <= 10000.

  • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

LTIMindtree Software Developer Interview Experiences

93 interviews found

Software Developer Interview Questions & Answers

user image Vivek Vardhan

posted on 20 Dec 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Admin part and mainly LWC development
  • Q2. Case study on devlopment part
Round 2 - One-on-one 

(1 Question)

  • Q1. Last project details and more technical skills and real-time cases
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Aptitude, Listening and Speaking, and Coding was in one test. Aptitude was of average level

Round 2 - Coding Test 

Coding was not too easy nor too hard. Learn list manipulation well.

Round 3 - Technical 

(2 Questions)

  • Q1. What are OOPs concepts?
  • Ans. 

    OOPs concepts refer to Object-Oriented Programming principles such as 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 complex implementation det...

  • Answered by AI
  • Q2. What is denormalization( SQL)
  • Ans. 

    Denormalization is the process of adding redundant data to a database to improve read performance.

    • Reduces the need for joins, improving query performance

    • Increases data redundancy but can improve read performance

    • Commonly used in data warehousing and reporting applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn OOPs concepts thoroughly and make sure to explain your projects in detail. They ask a lot about your projects.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain working of diode
  • Q2. What is neural networks

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Developer interview:
  • OOPS
  • Machine Learning

Skills evaluated in this interview

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

Not applicable for me in this context

Round 2 - One-on-one 

(2 Questions)

  • Q1. Not applicable for me
  • Q2. Not applicable for me
Round 3 - HR 

(2 Questions)

  • Q1. Not applicable for me
  • Q2. Not applicable for me

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in your answer
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Advanced questions in JAVA
  • Q2. Adavanced questions in DBMS

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Developer interview:
  • Java
Interview preparation tips for other job seekers - The interview got postponed multiple times and the inyerview was also not went good.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. No recommended for any one. Please refuse Ltimindtree offers

Interview Preparation Tips

Interview preparation tips for other job seekers - Not recommended organization. No projects and only few only they have that too support project. WFM team HR team all fake words while join. Company Policies not good. For will hire for 40 openings 200 peoples. In salesforce 240+ peoples are in bench always. Once 2months bench period complete you need to resign your self.
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?
  • Ans. 

    In five years, I envision myself as a lead developer, driving innovative projects and mentoring junior developers in a collaborative environment.

    • I aim to lead a team on impactful projects, like developing a scalable application that enhances user experience.

    • I plan to deepen my expertise in emerging technologies, such as AI and machine learning, to contribute to cutting-edge solutions.

    • I aspire to mentor junior developer...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test , in which reasoning is there and maths basic question were there

Round 2 - Technical 

(2 Questions)

  • Q1. What are friend function in c++
  • Ans. 

    Friend functions in C++ allow non-member functions to access private and protected members of a class.

    • Friend functions are declared using the 'friend' keyword inside a class.

    • They can access private and protected data of the class they are friends with.

    • Friend functions are not members of the class, so they do not have a 'this' pointer.

    • Example: If class A has a friend function 'void func(A& a)', it can access A's pri...

  • Answered by AI
  • Q2. What are oops concept

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

There were MCQ's based on aptitude, computer networks and Operating systems.

Round 2 - Technical 

(5 Questions)

  • Q1. I've answers all the questions asked by them, most of them were basic, but the only thing was, interviewer asked me to write the code of my project which I was unable to write.
  • Q2. Favorite coding language and why?
  • Q3. Why java is platform independent?
  • Q4. Projects titles and explain all the projects
  • Ans. 

    Developed a project management tool, a mobile app for tracking expenses, and a web-based game.

    • Project management tool - Created using Java and MySQL for organizing tasks and deadlines

    • Mobile app for tracking expenses - Developed using React Native to track and categorize expenses

    • Web-based game - Built using HTML5, CSS, and JavaScript for interactive gaming experience

  • Answered by AI
  • Q5. Write the project code
  • Ans. 

    The project code is a web application for managing tasks and deadlines.

    • Use HTML, CSS, and JavaScript for front-end development

    • Use Node.js and Express for back-end development

    • Implement CRUD operations for tasks and deadlines

    • Utilize MongoDB for database storage

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

English Test vocabulary speech

Round 2 - Technical 

(2 Questions)

  • Q1. Introduction was asked by interviewer
  • Q2. Tell about the project
Round 3 - HR 

(2 Questions)

  • Q1. To introduce yourself to the interviewer
  • Q2. Strength and weakness

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Software Developer 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 Software Developer 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 Angular, Python, Microservices, SQL and Software Development.
What are the top questions asked in LTIMindtree Software Developer interview?

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

  1. What is the difference between C and ...read more
  2. What is the difference between Arrays and dynamic arrays in ja...read more
  3. Tr2-difference between compiler and interpreter, Solve a challange on their own...read more
What are the most common questions asked in LTIMindtree Software Developer HR round?

The most common HR questions asked in LTIMindtree Software Developer interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your strengths and weakness...read more
  3. Tell me about yourse...read more
How long is the LTIMindtree Software Developer interview process?

The duration of LTIMindtree Software Developer 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

3.9/5

based on 84 interview experiences

Difficulty level

Easy 17%
Moderate 78%
Hard 5%

Duration

Less than 2 weeks 47%
2-4 weeks 37%
4-6 weeks 5%
6-8 weeks 5%
More than 8 weeks 5%
View more
LTIMindtree Software Developer Salary
based on 3k salaries
₹3 L/yr - ₹22.9 L/yr
13% more than the average Software Developer Salary in India
View more details

LTIMindtree Software Developer Reviews and Ratings

based on 362 reviews

3.7/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.1

Salary

3.7

Job security

3.6

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 362 Reviews and Ratings
Senior Software Engineer
22k salaries
unlock blur

₹7.4 L/yr - ₹21.6 L/yr

Software Engineer
16.3k salaries
unlock blur

₹3.9 L/yr - ₹8.8 L/yr

Technical Lead
6.4k salaries
unlock blur

₹16.4 L/yr - ₹28.3 L/yr

Module Lead
5.7k salaries
unlock blur

₹11.8 L/yr - ₹20.4 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.7
Compare

TCS

3.6
Compare
write
Share an Interview