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 for Experienced

Updated 30 May 2025

19 Interview questions

🔥 Asked by recruiter 2 times
A Software Developer was asked 1mo ago
Q. What is a Common Table Expression (CTE) in SQL?
Ans. 

A Common Table Expression (CTE) is a temporary result set in SQL that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

  • CTEs improve readability and organization of complex queries.

  • They can be recursive, allowing for hierarchical data retrieval.

  • Example: WITH CTE_Name AS (SELECT column1 FROM table WHERE condition) SELECT * FROM CTE_Name;

  • CTEs can be used to simplify joins and subqueries.

🔥 Asked by recruiter 5 times
A Software Developer was asked 11mo ago
Q. What is Dependency Injection?
Ans. 

Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

  • Allows for easier testing by mocking dependencies

  • Promotes loose coupling between components

  • Improves code reusability and maintainability

  • Examples: Constructor injection, Setter injection, Interface injection

Software Developer Interview Questions Asked at Other Companies for Experienced

asked in Amazon
Q1. Fenwick Tree Problem Statement You are provided with an array/lis ... read more
asked in Infosys
Q2. 1. what is the difference between exception and error. How did u ... read more
asked in Amazon
Q3. Fire in the Cells Problem Statement Given a matrix MAT of size N ... read more
asked in Amazon
Q4. Find All Pairs Adding Up to Target Given an array of integers ARR ... read more
Q5. Chess Tournament Problem Statement In Ninjaland, a chess tourname ... read more
A Software Developer was asked
Q. How do you reverse a phrase in C#?
Ans. 

Use C# to reverse a given phrase

  • Use the built-in method Reverse() to reverse a string

  • Convert the string to a char array, reverse it, then convert it back to a string

  • Iterate through the string and build a new string in reverse order

A Software Developer was asked
Q. Write a query to self-join a table and delete duplicate records.
Ans. 

Use self join and delete to remove duplicate records in SQL

  • Use a self join to identify duplicate records based on specific criteria

  • Select the records to be deleted using the self join

  • Use the DELETE statement to remove the duplicate records

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. What are indexes?
Ans. 

Indexes are data structures used to improve the speed of data retrieval operations in databases.

  • Indexes are created on columns in database tables to quickly locate rows based on the values in those columns.

  • They help in reducing the number of disk I/O operations required when querying data.

  • Examples include primary keys, unique keys, and indexes created on frequently searched columns.

A Software Developer was asked
Q. What is the life cycle of MVC?
Ans. 

MVC life cycle involves request handling, routing, controller execution, view rendering, and response generation.

  • Request is received by the router

  • Router maps the request to the appropriate controller

  • Controller processes the request and interacts with the model

  • Model updates the data and sends it back to the controller

  • Controller passes data to the view for rendering

  • View generates the response and sends it back to th...

🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. What is the difference between C and C++?
Ans. 

C++ is an extension of C with object-oriented programming features.

  • C++ supports classes and objects while C does not.

  • C++ has better support for polymorphism and inheritance.

  • C++ has a standard template library (STL) while C does not.

  • C++ allows function overloading while C does not.

  • C++ has exception handling while C does not.

Are these interview questions helpful?
A Software Developer was asked
Q. What are Web services?
Ans. 

Web services are software systems designed to support interoperable machine-to-machine interaction over a network.

  • Web services allow different applications to communicate with each other over the internet.

  • They use standardized protocols like HTTP, XML, SOAP, and REST.

  • Web services can be used for a variety of purposes, such as sharing data between different systems or integrating different applications.

  • Examples of ...

A Software Developer was asked
Q. What is the role of ZooKeeper?
Ans. 

ZooKeeper is a distributed coordination service for managing configuration, synchronization, and naming.

  • ZooKeeper provides a hierarchical namespace for distributed systems.

  • It is used for maintaining configuration information, naming, providing distributed synchronization, and group services.

  • ZooKeeper is used in Apache Hadoop, Apache Kafka, and Apache Storm.

  • It uses a consensus protocol called ZAB (ZooKeeper Atomic ...

A Software Developer was asked
Q. What is Microservice?
Ans. 

Microservice is a software architecture pattern where an application is built as a collection of small, independent services.

  • Microservices are independently deployable and scalable.

  • Each microservice performs a specific business function.

  • Communication between microservices is usually done through APIs.

  • Microservices can be written in different programming languages and use different data storage technologies.

  • Example...

LTIMindtree Software Developer Interview Experiences for Experienced

21 interviews found

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
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern that allows a program to achieve Inversion of Control by passing dependencies to objects.

    • Promotes loose coupling between classes, making code easier to manage and test.

    • Facilitates easier unit testing by allowing mock dependencies to be injected.

    • Commonly used in frameworks like Spring (Java) and Angular (JavaScript).

    • Example: Instead of a class creating its own dependencies, they ...

  • Answered by AI
  • Q2. What is a Common Table Expression (CTE) in SQL?
  • Ans. 

    A Common Table Expression (CTE) is a temporary result set in SQL that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • CTEs improve readability and organization of complex queries.

    • They can be recursive, allowing for hierarchical data retrieval.

    • Example: WITH CTE_Name AS (SELECT column1 FROM table WHERE condition) SELECT * FROM CTE_Name;

    • CTEs can be used to simplify joins and subqueries.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. Different between Scope, Transilent, and singleton.
  • Ans. 

    Scope defines the visibility of variables, transient is short-lived, and singleton is a single instance shared across the application.

    • Scope determines the visibility and lifetime of variables in a program.

    • Transient objects are short-lived and are typically used for temporary data storage.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

  • Answered by AI

Skills evaluated in this interview

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

DSA, oops, c++, 2 hrs

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yoursellf
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies such as HTML, CSS, and JavaScript

    • Strong problem-solving skills and ability to work in a team environment

    • Familiar with Agile development methodologies and version control systems like Git

  • Answered by AI
  • Q2. Why you want to switch
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for new challenges to enhance my skills

    • Interested in exploring different technologies and industries

    • Seeking better career growth opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI

Software Developer Interview Questions & Answers

user image shivam dhagat

posted on 25 Apr 2024

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

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. 1, Indexes , view , lifecycle of MVc
  • Q2. What is indexes
  • Ans. 

    Indexes are data structures used to improve the speed of data retrieval operations in databases.

    • Indexes are created on columns in database tables to quickly locate rows based on the values in those columns.

    • They help in reducing the number of disk I/O operations required when querying data.

    • Examples include primary keys, unique keys, and indexes created on frequently searched columns.

  • Answered by AI
  • Q3. Life cycle of MVC
  • Ans. 

    MVC life cycle involves request handling, routing, controller execution, view rendering, and response generation.

    • Request is received by the router

    • Router maps the request to the appropriate controller

    • Controller processes the request and interacts with the model

    • Model updates the data and sends it back to the controller

    • Controller passes data to the view for rendering

    • View generates the response and sends it back to the cli...

  • Answered by AI
  • Q4. Query to self join and delete the dulplicate record
  • Ans. 

    Use self join and delete to remove duplicate records in SQL

    • Use a self join to identify duplicate records based on specific criteria

    • Select the records to be deleted using the self join

    • Use the DELETE statement to remove the duplicate records

  • Answered by AI
  • Q5. Reverse phrase in C#
  • Ans. 

    Use C# to reverse a given phrase

    • Use the built-in method Reverse() to reverse a string

    • Convert the string to a char array, reverse it, then convert it back to a string

    • Iterate through the string and build a new string in reverse order

  • Answered by AI

Skills evaluated in this interview

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

Three parts such as verbal, logical, technical mostly know concepts

Round 2 - Technical 

(1 Question)

  • Q1. Knowledge on your coding language ex: JAVA , C++ in my case knowledge on your projects done in your college understanding on recent technology and some HR questions

Software Developer Interview Questions & Answers

user image Rupali Kodape

posted on 19 Oct 2023

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Oops questions .collections,spring , coding
Round 3 - Technical 

(1 Question)

  • Q1. Coding round they asked
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java basics with oops concept

I applied via Naukri.com and was interviewed in May 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 - Technical 

(1 Question)

  • Q1. Project explain. Oops concepts. SQL concepts.
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based . Performance tuning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary disscus . Location preference.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself on basic questions. Some advance concept good to have.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 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 - Coding Test 

I was selected through campus placement. First round was coding Test. There was three coding questions based on DSA.

Round 3 - Technical 

(4 Questions)

  • Q1. The interviewer asked mostly on DSA questions. Simple and some tricky questions. Like what is sorting and explain some sorting techniques. Mainly concentrate on your DSA skills. And also your programming l...
  • Q2. What is an array
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type in a contiguous memory location.

    • Arrays have a fixed size determined at the time of declaration.

    • Elements in an array are accessed using an index starting from 0.

    • Example: string[] names = {"Alice", "Bob", "Charlie"};

  • Answered by AI
  • Q3. 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]

  • Answered by AI
  • Q4. Some simple coding questions
Round 4 - HR 

(1 Question)

  • Q1. Few questions about willingness to relocate and some other things.

Skills evaluated in this interview

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Software Developer interview for experienced candidates?
LTIMindtree interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the LTIMindtree interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for LTIMindtree Software Developer interview for experienced candidates?
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 for experienced candidates?

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

  1. What is the difference between C and ...read more
  2. Is it possible to use Kafka without ZooKeep...read more
  3. Why are Replications critical in Kaf...read more
What are the most common questions asked in LTIMindtree Software Developer HR round for experienced candidates?

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

  1. Where do you see yourself in 5 yea...read more
  2. Tell me about yourse...read more
  3. What are your salary expectatio...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.8/5

based on 9 interview experiences

Difficulty level

Easy 40%
Moderate 60%

Duration

Less than 2 weeks 60%
2-4 weeks 40%
View more
LTIMindtree Software Developer Salary
based on 3k salaries
₹3 L/yr - ₹22.7 L/yr
12% 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.3 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.3 L/yr - ₹28.3 L/yr

Module Lead
5.7k salaries
unlock blur

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