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

Updated 7 Mar 2025

Top LTIMindtree Interview Questions and Answers

  • Q1. in Angular what is services and how to call service api, and how bind our data with in component.
  • Q2. What are a concurrent hashmap and its advantage over a normal hashmap?
  • Q3. Print the odd numbers inbetween 1 to 10 and greater than 5 using streams
View all 54 questions

LTIMindtree Interview Experiences

89 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

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. Basics of Java, spring, front end technology , explain past projects end to end
Round 3 - One-on-one 

(1 Question)

  • Q1. Asked about previous technical project explanation
Round 4 - HR 

(1 Question)

  • Q1. Asked general HR questions and CTC, location discussion

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 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 

(2 Questions)

  • Q1. Java8 principles, core java, multi threading, exception handling
  • Q2. Spring boot basics, few annotations
Round 3 - One-on-one 

(2 Questions)

  • Q1. Oracle related basic questions, questions about ddl, dml
  • Q2. Hibernate focused discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics of your entire projects you worked on

Senior Software Engineer Interview Questions Asked at Other Companies for undefined

Q1. Duplicate Integer in Array Given an array ARR of size N, containi ... read more
asked in Visa
Q2. Given a grid containing 0s and 1s and source row and column, in h ... read more
asked in Capgemini
Q3. Kth Largest Number Problem Statement You are given a continuous s ... read more
asked in Mphasis
Q4. Trapping Rain Water Problem Statement Given a long type array/lis ... read more
Q5. Anagram Pairs Verification In this task, you need to verify if tw ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com 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 

This is a MCQ Based coding round

Round 3 - Technical 

(2 Questions)

  • Q1. Basic questions regarding Spark and Scala, as i joined as 1 years of relevant experience
  • Q2. What are the challenges you faced and how did you resolved them
Round 4 - HR 

(1 Question)

  • Q1. It was a salary discussion round

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Software Engineer interview:
  • Spark
  • SQL
  • Core knowledge of BI
  • SCALA

I applied via LinkedIn and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Mainframe Questions
  • Q2. Prepare well for JCL and COBOL related questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based questions.
  • Q2. Google is your best friend for that 😉
Round 3 - HR 

(1 Question)

  • Q1. Usual HR questions and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was moderately difficult. Please read latest news and operations of Mindtree. It'll help you in HR as well as Technical round.

LTIMindtree interview questions for designations

 Senior Software

 (2)

 Senior Software Engineer 2

 (5)

 Senior Software Engineer Testing

 (4)

 Senior Software Development Engineer

 (2)

 Senior Software Test Engineer

 (1)

 Software Engineer

 (279)

 Senior Software Developer

 (11)

 Senior Software Tester

 (2)

Round 1 - Technical 

(1 Question)

  • Q1. DB2 CL400 RPG400 COBOL400
Round 2 - HR 

(8 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
  • Q5. What are your salary expectations?
  • Q6. What is your family background?
  • Q7. Share details of your previous job.
  • Q8. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice place to work you wipp get good hike based on performence

Get interview-ready with Top LTIMindtree Interview Questions

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Most of the questions were related to java 8 and its features.
  • Q2. Small program related to streams and functional interfaces java 8 new feature.
  • Q3. Few questions on the use of basic annotations in spring-like @Atutowired, @Componets, @Primary, etc.
  • Q4. Explain the Internal functionality of the hashmap.
  • Ans. 

    Hashmap is a data structure that stores key-value pairs using a hash function.

    • Hashmap uses a hash function to map keys to their corresponding values.

    • It has constant time complexity for insertion, deletion, and retrieval.

    • Collisions can occur when two keys map to the same index, which is resolved using separate chaining or open addressing.

    • Load factor determines the threshold for resizing the hashmap.

    • Java's implementation...

  • Answered by AI
  • Q5. What are a concurrent hashmap and its advantage over a normal hashmap?
  • Ans. 

    Concurrent hashmap allows multiple threads to access and modify the map concurrently without causing data inconsistency.

    • Concurrent hashmap is thread-safe and allows multiple threads to access and modify the map concurrently.

    • It uses a technique called lock striping to divide the map into segments and apply locks to each segment instead of the entire map.

    • This allows multiple threads to access different segments of the ma...

  • Answered by AI
  • Q6. Different scops of beans.
  • Ans. 

    Different scopes of beans refer to their visibility and accessibility within an application.

    • Beans can have different scopes such as singleton, prototype, request, session, and global session.

    • Singleton scope means only one instance of the bean is created and shared throughout the application.

    • Prototype scope means a new instance of the bean is created every time it is requested.

    • Request scope means a new instance of the b...

  • Answered by AI
  • Q7. What are the advantages of hibernate framwork?
  • Ans. 

    Hibernate framework provides ORM capabilities, simplifies database access, and improves performance.

    • Hibernate reduces boilerplate code by providing ORM capabilities.

    • It simplifies database access by abstracting away the underlying SQL.

    • Hibernate improves performance by caching data and reducing database round trips.

    • It supports lazy loading, which improves performance by loading data only when needed.

    • Hibernate supports mu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be strong in all the basic concepts of core java. Give special focus to java 8 its new features.
You should know at least one framework like Spring.
You should know DAO layer frameworks like Hibernate, Spring Data JPA, etc.

Skills evaluated in this interview

Senior Software Engineer Jobs at LTIMindtree

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 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. 1.java basics 2.collection 3.spring data jpa, hibernate, relationship 4.spring boot annotations, features
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot java Microservices basic
Round 4 - HR 

(1 Question)

  • Q1. Why mindtree Long term short term goal

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Interview Questionnaire 

4 Questions

  • Q1. Design Patterns and Solid Principles
  • Q2. MVC Concepts
  • Q3. .net Core vs MVC
  • Ans. 

    .NET Core is a cross-platform framework while MVC is a design pattern for building web applications.

    • MVC is a design pattern that can be used with .NET Core or other frameworks

    • .NET Core is a lightweight and modular framework for building web applications

    • MVC provides a structured approach to building web applications

    • Both can be used together to build scalable and maintainable web applications

  • Answered by AI
  • Q4. SQL complex queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Give answers with confidence

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is power bi.
  • Ans. 

    Power BI is a business analytics service by Microsoft that provides interactive visualizations and business intelligence capabilities.

    • Power BI allows users to connect to various data sources and create interactive reports and dashboards.

    • It provides a wide range of visualization options such as charts, graphs, maps, and tables.

    • Users can also create custom visuals using the Power BI developer tools.

    • Power BI integrates wi...

  • Answered by AI
  • Q2. Diff b/w drill down and drill through
  • Ans. 

    Drill down is navigating from summary data to detailed data, while drill through is navigating from one report to another.

    • Drill down allows users to see more detailed information by clicking on a summary data point.

    • Drill through allows users to navigate from one report to another, typically by clicking on a hyperlink.

    • Drill down is used to explore data within a single report, while drill through is used to navigate betw...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not go for mindtree they will keep on bench for 3 to 4 months and they will fire

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed before Aug 2022. There were 5 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 

Brief test about Coding skills

Round 3 - HR 

(1 Question)

  • Q1. Reg the previous employment, salary etc
Round 4 - One-on-one 

(1 Question)

  • Q1. Technical one on one round
Round 5 - Client Interview 

(1 Question)

  • Q1. Final interview reg the client

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Senior Software Engineer 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 Senior Software Engineer 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 SQL, Javascript, Agile, Coding and Troubleshooting.
What are the top questions asked in LTIMindtree Senior Software Engineer interview for experienced candidates?

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

  1. in Angular what is services and how to call service api, and how bind our data...read more
  2. What are a concurrent hashmap and its advantage over a normal hashm...read more
  3. Print the odd numbers inbetween 1 to 10 and greater than 5 using stre...read more
How long is the LTIMindtree Senior Software Engineer interview process?

The duration of LTIMindtree Senior 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 Interview Process

based on 45 interviews

5 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
View more
LTIMindtree Senior Software Engineer Salary
based on 21.3k salaries
₹5 L/yr - ₹18.8 L/yr
25% less than the average Senior Software Engineer Salary in India
View more details

LTIMindtree Senior Software Engineer Reviews and Ratings

based on 2k reviews

3.6/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.2

Salary

3.5

Job security

3.5

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 2k Reviews and Ratings
Senior Software Engineer

Pune

8-13 Yrs

Not Disclosed

Senior Software Engineer

Mumbai,

Navi Mumbai

8-13 Yrs

Not Disclosed

Senior Software Engineer

Pune

3-6 Yrs

₹ 3.82-24 LPA

Explore more jobs
Senior Software Engineer
21.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
16.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
6.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Module Lead
5.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
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