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 Graduate Trainee Interview Questions and Answers for Freshers

Updated 18 Mar 2025

15 Interview questions

A Graduate Trainee was asked 6mo ago
Q. Write a program to determine if a number is prime, and then provide several test cases.
Ans. 

A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.

  • A prime number has exactly two distinct positive divisors: 1 and itself. Example: 2, 3, 5, 7.

  • The number 1 is not prime because it has only one divisor.

  • The first few prime numbers are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.

  • Even numbers greater than 2 are not prime since they are divisible by 2. Example: 4...

A Graduate Trainee was asked 6mo ago
Q. Tell me more about the information in your resume.
Ans. 

My resume highlights my academic achievements, internships, and skills relevant to the Graduate Trainee position.

  • Completed a Bachelor's degree in Business Administration with a focus on Marketing.

  • Interned at XYZ Corporation, where I assisted in developing marketing strategies that increased engagement by 30%.

  • Participated in a leadership program that enhanced my project management and teamwork skills.

  • Volunteered fo...

Graduate Trainee Interview Questions Asked at Other Companies for Fresher

asked in Freshworks
Q1. Invert a Binary Tree You are provided with a Binary Tree and one ... read more
asked in Freshworks
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Freshworks
Q3. Deepest Left Leaf Node Problem Statement You are provided with a ... read more
asked in Freshworks
Q4. Valid Parentheses Problem Statement Given a string 'STR' consisti ... read more
asked in Flipkart
Q5. Flipkart charges a shipping fee for orders below Rs. 500. How can ... read more
A Graduate Trainee was asked 6mo ago
Q. If we clear the technical round, will we be eligible for the HR interview?
Ans. 

Clearing the Technical Round (TR) is essential for progressing to the HR interview stage in the recruitment process.

  • TR assesses technical skills relevant to the job role, such as coding for software positions.

  • Example: A candidate might solve a coding problem to demonstrate their programming abilities.

  • HR interview focuses on soft skills, cultural fit, and overall personality.

  • Example: Candidates may discuss their te...

A Graduate Trainee was asked 6mo ago
Q. What is a pointer to a pointer?
Ans. 

A pointer to a pointer is a variable that stores the address of another pointer, allowing for multi-level indirection.

  • 1. Definition: A pointer to a pointer (e.g., int **ptr) holds the address of another pointer (e.g., int *p).

  • 2. Usage: Useful in dynamic memory allocation and when passing pointers to functions.

  • 3. Example: int x = 10; int *p = &x; int **ptr = &p; // ptr points to p, which points to x.

  • 4. Memo...

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.
🔥 Asked by recruiter 6 times
A Graduate Trainee was asked 6mo ago
Q. Are you willing to relocate?
Ans. 

I am open to relocating for the right opportunity, as it can enhance my career and personal growth.

  • Relocation can provide exposure to new cultures and experiences, enriching my personal life.

  • I believe that working in different locations can broaden my professional network.

  • For example, moving to a city with a strong industry presence can lead to better career opportunities.

  • I am adaptable and willing to embrace chan...

A Graduate Trainee was asked 6mo ago
Q. Is it possible to cut a cake into 8 pieces with only 3 slices?
Ans. 

Cut the cake into 8 pieces by making 3 slices, creating 8 equal-sized slices.

  • Make two vertical cuts to divide the cake into 4 equal quarters.

  • Then make one horizontal cut through the middle of the cake to create 8 equal-sized slices.

  • Each slice will be a triangular piece of cake.

A Graduate Trainee was asked 6mo ago
Q. What does LTIMindtree do?
Ans. 

LtiMindtree is a global technology consulting and services company.

  • Provides IT consulting, digital transformation, and technology services

  • Offers solutions in areas such as cloud computing, data analytics, and artificial intelligence

  • Works with clients across various industries including banking, healthcare, and retail

Are these interview questions helpful?
A Graduate Trainee was asked 6mo ago
Q. Write a program to check if a number is divisible by 2.
Ans. 

Write a code to check if a number is divisible by 2.

  • Use the modulo operator (%) to check if the remainder is 0 when divided by 2.

  • If the remainder is 0, then the number is divisible by 2.

  • Example: if(num % 2 == 0) { // divisible by 2 }

A Graduate Trainee was asked 6mo ago
Q. Tell me about abstraction and interfaces.
Ans. 

Abstraction is the concept of hiding complex implementation details and showing only the necessary features. Interfaces define a contract for classes to implement.

  • Abstraction allows us to focus on what an object does rather than how it does it

  • Interfaces define a set of methods that a class must implement, without specifying how they are implemented

  • Abstraction and interfaces help in achieving loose coupling and fle...

A Graduate Trainee was asked 6mo ago
Q. Write a program to print a triangle pattern.
Ans. 

This question involves printing a triangle pattern using loops in programming.

  • Use nested loops: Outer loop for rows, inner loop for columns.

  • For a right-angled triangle, print '*' for each column in the row.

  • Example for 5 rows: 1st row: * 2nd row: ** 3rd row: *** 4th row: **** 5th row: *****

  • Adjust spaces for different triangle types (e.g., centered triangle).

LTIMindtree Graduate Trainee Interview Experiences for Freshers

14 interviews found

Graduate Trainee Interview Questions & Answers

user image Nashrat Jahan

posted on 20 Dec 2024

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

Basic core computer concepts and technology related questions

Round 2 - Technical 

(4 Questions)

  • Q1. Oops, arraylists
  • Q2. Tell me about abstraction and interfaces
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features. Interfaces define a contract for classes to implement.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • Interfaces define a set of methods that a class must implement, without specifying how they are implemented

    • Abstraction and interfaces help in achieving loose coupling and flexibil...

  • Answered by AI
  • Q3. Array lists vs arrays
  • Ans. 

    Array lists are dynamic in size, while arrays have fixed sizes.

    • Array lists can grow or shrink in size dynamically, while arrays have a fixed size.

    • Array lists are implemented using dynamic arrays, while arrays are static data structures.

    • Array lists provide methods for adding, removing, and accessing elements easily, while arrays require manual resizing and shifting of elements.

    • Example: ArrayList<String> vs String[...

  • Answered by AI
  • Q4. Pattern printibg questionto print a triangle
  • Ans. 

    This question involves printing a triangle pattern using loops in programming.

    • Use nested loops: Outer loop for rows, inner loop for columns.

    • For a right-angled triangle, print '*' for each column in the row.

    • Example for 5 rows: 1st row: * 2nd row: ** 3rd row: *** 4th row: **** 5th row: *****

    • Adjust spaces for different triangle types (e.g., centered triangle).

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Flexible with moving
  • Ans. 

    I am open to relocating for the right opportunity.

    • I am willing to move to different locations for career growth

    • I understand the importance of being flexible with relocation for job opportunities

    • I have experience moving for previous job opportunities, such as relocating for internships or projects

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It involves the question of SQL, programming.

Round 2 - Technical 

(3 Questions)

  • Q1. Why OOPs is used
  • Ans. 

    OOP is used for organizing code into reusable objects, promoting code reusability, modularity, and easier maintenance.

    • Encapsulation: Data and methods are bundled together in objects, promoting data security and code organization.

    • Inheritance: Allows for the creation of new classes based on existing ones, promoting code reuse and reducing redundancy.

    • Polymorphism: Objects can be treated as instances of their parent class,...

  • Answered by AI
  • Q2. What is multiple inheritance
  • Ans. 

    Multiple inheritance is a feature in object-oriented programming where a class can inherit attributes and methods from more than one parent class.

    • Allows a class to inherit attributes and methods from multiple parent classes

    • Can lead to the diamond problem where ambiguity arises if two parent classes have a method with the same name

    • Languages like C++ support multiple inheritance

  • Answered by AI
  • Q3. What is mentioned bypolymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in object-oriented programming languages like Java allows for polymorphism.

    • Example: A method 'draw()' ca...

  • Answered by AI

Skills evaluated in this interview

Graduate Trainee Interview Questions & Answers

user image Bakya shree

posted on 20 Dec 2024

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

There are & sections

Round 2 - Technical 

(1 Question)

  • Q1. What is pointer to pointer
  • Ans. 

    A pointer to a pointer is a variable that stores the address of another pointer, allowing for multi-level indirection.

    • 1. Definition: A pointer to a pointer (e.g., int **ptr) holds the address of another pointer (e.g., int *p).

    • 2. Usage: Useful in dynamic memory allocation and when passing pointers to functions.

    • 3. Example: int x = 10; int *p = &x; int **ptr = &p; // ptr points to p, which points to x.

    • 4. Memory: I...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell about yourself?
  • Ans. 

    I am a motivated graduate with a passion for learning and a strong foundation in my field, eager to contribute and grow in a dynamic environment.

    • Educational Background: Graduated with a degree in Business Administration, focusing on marketing strategies.

    • Internship Experience: Completed a summer internship at XYZ Corp, where I assisted in developing a social media campaign that increased engagement by 30%.

    • Skills: Profic...

  • Answered by AI
  • Q2. Willing to shift your location?
  • Ans. 

    I am open to relocating for the right opportunity, as it can enhance my career and personal growth.

    • Relocation can provide exposure to new cultures and experiences, enriching my personal life.

    • I believe that working in different locations can broaden my professional network.

    • For example, moving to a city with a strong industry presence can lead to better career opportunities.

    • I am adaptable and willing to embrace change, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well technically

Graduate Trainee Interview Questions & Answers

user image PUPPALA LAKSHMI

posted on 20 Dec 2024

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

I didn't remember the questions.

Round 2 - Coding Test 

I didn't remember the questions.

Round 3 - Technical 

(1 Question)

  • Q1. They asked me to write a code for prime number and after writing he asked several test cases.
  • Ans. 

    A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.

    • A prime number has exactly two distinct positive divisors: 1 and itself. Example: 2, 3, 5, 7.

    • The number 1 is not prime because it has only one divisor.

    • The first few prime numbers are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.

    • Even numbers greater than 2 are not prime since they are divisible by 2. Example: 4, 6, ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Scenario based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basics of numerical and logical reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Interview based on simple programming questions
Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy to crack easy level

Round 2 - Coding Test 

Easy to crack ALL process was easy

Round 3 - Technical 

(1 Question)

  • Q1. About oops and dsa
Round 4 - HR 

(1 Question)

  • Q1. All about your resume that we had mentioned in.
  • Ans. 

    My resume highlights my academic achievements, internships, and skills relevant to the Graduate Trainee position.

    • Completed a Bachelor's degree in Business Administration with a focus on Marketing.

    • Interned at XYZ Corporation, where I assisted in developing marketing strategies that increased engagement by 30%.

    • Participated in a leadership program that enhanced my project management and teamwork skills.

    • Volunteered for a n...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Round 1 was online assessment which consists of aptitude test and pseudo codes.
Round 2 - Technical 

(1 Question)

  • Q1. If we clear assessment, then we will be eligible for Round 2 and it was technical interview
Round 3 - HR 

(1 Question)

  • Q1. If we clear TR then we will eligible for HR interview
  • Ans. 

    Clearing the Technical Round (TR) is essential for progressing to the HR interview stage in the recruitment process.

    • TR assesses technical skills relevant to the job role, such as coding for software positions.

    • Example: A candidate might solve a coding problem to demonstrate their programming abilities.

    • HR interview focuses on soft skills, cultural fit, and overall personality.

    • Example: Candidates may discuss their teamwor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics well and u will crack it.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Multiple analytical questions and 3 easy coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Divisible by 2 code
  • Ans. 

    Write a code to check if a number is divisible by 2.

    • Use the modulo operator (%) to check if the remainder is 0 when divided by 2.

    • If the remainder is 0, then the number is divisible by 2.

    • Example: if(num % 2 == 0) { // divisible by 2 }

  • Answered by AI
  • Q2. Cut one cake into 8 pieces with 3 slices
  • Ans. 

    Cut the cake into 8 pieces by making 3 slices, creating 8 equal-sized slices.

    • Make two vertical cuts to divide the cake into 4 equal quarters.

    • Then make one horizontal cut through the middle of the cake to create 8 equal-sized slices.

    • Each slice will be a triangular piece of cake.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What does LtiMindtree do?
  • Ans. 

    LtiMindtree is a global technology consulting and services company.

    • Provides IT consulting, digital transformation, and technology services

    • Offers solutions in areas such as cloud computing, data analytics, and artificial intelligence

    • Works with clients across various industries including banking, healthcare, and retail

  • Answered by AI

Graduate Trainee Interview Questions & Answers

user image Kolla Lakshitha

posted on 20 Dec 2024

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

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

Round 1 - Aptitude Test 

Time and Distance,Ratio and Proportion

Round 2 - Technical 

(2 Questions)

  • Q1. Python,Coding,Sql,Project related questions
  • Q2. Machine learning
Round 3 - HR 

(1 Question)

  • Q1. Flexibe,Adapatable,Night timings,rotational shifts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

Basic coding questions were asked

Round 3 - Technical 

(1 Question)

  • Q1. Asked basic coding like palindrome, and oops
Round 4 - HR 

(1 Question)

  • Q1. HR questions and about your native place

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Graduate Trainee 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, HR and Aptitude Test.
What are the top questions asked in LTIMindtree Graduate Trainee interview for freshers?

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

  1. If we clear TR then we will eligible for HR interv...read more
  2. They asked me to write a code for prime number and after writing he asked sever...read more
  3. Tell me about abstraction and interfa...read more
How long is the LTIMindtree Graduate Trainee interview process?

The duration of LTIMindtree Graduate Trainee 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

4.4/5

based on 14 interview experiences

Difficulty level

Easy 33%
Moderate 56%
Hard 11%

Duration

Less than 2 weeks 63%
2-4 weeks 13%
4-6 weeks 25%
View more
LTIMindtree Graduate Trainee Salary
based on 51 salaries
₹3 L/yr - ₹6 L/yr
At par with the average Graduate Trainee Salary in India
View more details

LTIMindtree Graduate Trainee Reviews and Ratings

based on 180 reviews

4.0/5

Rating in categories

4.3

Skill development

3.6

Work-life balance

3.9

Salary

3.6

Job security

4.1

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 180 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

₹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