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 Engineer Trainee (Get) Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top LTIMindtree Graduate Engineer Trainee (Get) 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 n ...read more
  • Q2. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: I ...read more
  • Q3. Your introduction? What are oops concept? What is inheritance? What is difference between c and c++? Write a code to print sum of all prime no. Between 1to100? What is pr ...read more
View all 48 questions

LTIMindtree Graduate Engineer Trainee (Get) Interview Experiences

73 interviews found

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

I applied via campus placement at BNM Institute of Technology, Bangalore and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. English basics ,grammar, comprehension
  • Q2. Pseudo codes,basic theory questions
Round 2 - Technical 

(2 Questions)

  • Q1. Basics questions on python and OOPs
  • Q2. Program to implement factorial of a number
  • Ans. 

    Program to calculate factorial of a number using recursion or iteration

    • Define a function to calculate factorial

    • Use recursion or iteration to calculate factorial

    • Handle edge cases like 0 and negative numbers

    • Example: factorial of 5 is 5*4*3*2*1 = 120

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm,prepare basics well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Questions of aptitude and tehcnical mcq asked

Round 2 - Technical 

(2 Questions)

  • Q1. What is struct and unions
  • Ans. 

    Structs and unions are data structures in C programming used to group different data types under a single name.

    • Structs allow you to group different data types together under a single name. For example, a struct 'Person' can have fields like name, age, and gender.

    • Unions are similar to structs but they share the same memory location for all its members. Only one member can contain a value at a time. For example, a union ...

  • Answered by AI
  • Q2. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Basic hr question

Skills evaluated in this interview

Graduate Engineer Trainee (Get) Interview Questions Asked at Other Companies

asked in JBM Group
Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Diffe ... read more
Q2. How to check for continuity for a wire inside a wall if the start ... read more
Q3. What will be the cost of painting the wall behind me?
Q4. What happen when there is large air void in concrete?
Q5. Cycle Detection in a Singly Linked List Determine if a given sing ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions on logical reasoning and qunatative reasoning

Round 2 - Coding Test 

Write code for restaurant to get all menu using any language

Round 3 - HR 

(1 Question)

  • Q1. Normal Hr questions
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were many questions of numerical ability then verbal then reasning also was there

Round 2 - Technical 

(5 Questions)

  • Q1. There were questions asked from java,sql,ece
  • Q2. What are joins what is java what is oops what is index
  • Ans. 

    Joins are used in databases to combine rows from two or more tables based on a related column between them.

    • Joins are used in SQL to retrieve data from multiple tables based on a related column.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. What is callender type que
  • Ans. 

    A calender type queue is a data structure that stores elements in a circular buffer, allowing for efficient insertion and removal operations.

    • Elements are stored in a circular buffer, with a front and rear pointer indicating the start and end of the queue.

    • When the rear pointer reaches the end of the buffer, it wraps around to the beginning, creating a circular structure.

    • Insertion and removal operations are efficient as ...

  • Answered by AI
  • Q4. What is foreign key
  • Ans. 

    Foreign key is a field in a database table that links to a primary key in another table.

    • Foreign key ensures referential integrity between related tables

    • It helps maintain consistency and prevent orphan records

    • Example: In a database of students and courses, student_id in courses table can be a foreign key referencing id in students table

  • Answered by AI
  • Q5. What is challenges faced in project
  • Ans. 

    Challenges faced in a project include tight deadlines, budget constraints, communication issues, scope changes, and resource allocation.

    • Tight deadlines can lead to rushed work and potential errors.

    • Budget constraints may limit the resources available for the project.

    • Communication issues can result in misunderstandings and delays.

    • Scope changes can disrupt the project plan and require adjustments.

    • Resource allocation chall...

  • Answered by AI

Skills evaluated in this interview

LTIMindtree interview questions for designations

 Graduate Trainee

 (66)

 Production Graduate Engineer Trainee

 (2)

 Executive Graduate Trainee

 (1)

 Graduate Engineer

 (70)

 Engineer Trainee

 (25)

 Electrical GET

 (1)

 Associate Engineer Trainee

 (2)

 Trainee Quality Engineer

 (1)

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

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

Round 1 - Aptitude Test 

Basic aptitiude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops questions
  • Q2. Coding questions
Round 3 - HR 

(1 Question)

  • Q1. About yourself and relocation

Get interview-ready with Top LTIMindtree Interview Questions

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

I was interviewed in Jun 2024.

Round 1 - Aptitude Test 

Aptitude test which was having reasoning and communication assessment

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview included questions on oops concepts and mostly depended on your resume
  • Q2. Explain oops concepts Difference between list and tuple
  • Ans. 

    OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction. List is mutable while tuple is immutable.

    • OOPs concepts: inheritance, polymorphism, encapsulation, abstraction

    • List: mutable, can be modified after creation (e.g. [1, 2, 3])

    • Tuple: immutable, cannot be modified after creation (e.g. (1, 2, 3))

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Some scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well its easy to clear
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked very Basic DSA questions and English+Aptitude Test

Round 2 - Coding Test 

Interviewer asked me about OOPS concepts and DSA questions

Round 3 - HR 

(1 Question)

  • Q1. She asked me about what is your strength , where do you see yourself in next 5 years etc.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

First round was aptitute

Round 2 - Technical 

(2 Questions)

  • Q1. Pillers of OOPs
  • Q2. Sql Commands , explain BST
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Maths and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. OOPs basics, threading and then about my project which I did in college I am from electrical engineering department, so I was asked only basic questions.
Round 3 - HR 

(2 Questions)

  • Q1. About myself and my experience in working as a group
  • Q2. Willing to reallocate?
  • Ans. 

    Yes, willing to reallocate for the right opportunity.

    • Open to relocating for career growth

    • Flexible with location for the right job

    • Have relocated in the past for work

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via campus placement at Easwari Engineering College, Chennai and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude and Communication round

Round 2 - Technical 

(2 Questions)

  • Q1. What are String Tokenizers
  • Ans. 

    String tokenizers are tools used to break a string into smaller parts based on a specified delimiter.

    • String tokenizers are commonly used in programming to parse strings and extract relevant information.

    • They can be used to split a sentence into individual words, or to extract specific data from a structured text.

    • For example, in Java, the StringTokenizer class can be used to break a string into tokens based on a specifie

  • Answered by AI
  • Q2. OOPS concepts
Round 3 - HR 

(2 Questions)

  • Q1. Favourite personality and why
  • Ans. 

    My favourite personality is Elon Musk because of his innovative thinking, determination, and impact on various industries.

    • Innovative thinking: Elon Musk has founded multiple successful companies like Tesla and SpaceX, revolutionizing the automotive and aerospace industries.

    • Determination: Despite facing numerous challenges, Musk has persevered and achieved remarkable success in his ventures.

    • Impact on various industries:...

  • Answered by AI
  • Q2. Willing to relocate or work any shift
  • Ans. 

    Yes, I am willing to relocate and work any shift to gain valuable experience and contribute effectively to the company.

    • I am open to relocating to new places for career growth opportunities

    • I am flexible and adaptable to work in different shifts as required by the company

    • I understand the importance of being willing to relocate and work any shift in order to succeed in the engineering field

  • Answered by AI

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree Graduate Engineer Trainee (Get) interview?
LTIMindtree interview process usually has 3-4 rounds. The most common rounds in the LTIMindtree interview process are Technical, HR and Aptitude Test.
What are the top questions asked in LTIMindtree Graduate Engineer Trainee (Get) interview?

Some of the top questions asked at the LTIMindtree Graduate Engineer Trainee (Get) interview -

  1. Your introduction? What are oops concept? What is inheritance? What is differe...read more
  2. Can we write int func() and int func(int a) in a single cla...read more
  3. How to insert a java code in (html tags...read more
How long is the LTIMindtree Graduate Engineer Trainee (Get) interview process?

The duration of LTIMindtree Graduate Engineer Trainee (Get) interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

LTIMindtree Graduate Engineer Trainee (Get) Interview Process

based on 45 interviews

7 Interview rounds

  • Resume Shortlist Round
  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
  • Aptitude Test Round
  • Personal Interview1 Round
View more
LTIMindtree Graduate Engineer Trainee (Get) Salary
based on 468 salaries
₹3 L/yr - ₹8 L/yr
19% more than the average Graduate Engineer Trainee (Get) Salary in India
View more details

LTIMindtree Graduate Engineer Trainee (Get) Reviews and Ratings

based on 59 reviews

3.8/5

Rating in categories

3.8

Skill development

3.5

Work-life balance

3.5

Salary

3.5

Job security

3.7

Company culture

3.4

Promotions

3.3

Work satisfaction

Explore 59 Reviews and Ratings
Senior Software Engineer
21.3k salaries
unlock blur

₹5.1 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.4 L/yr - ₹36 L/yr

Senior Engineer
4.4k salaries
unlock blur

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