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 21 Feb 2025

Top LTIMindtree Graduate Engineer Trainee (Get) Interview Questions and Answers

  • Q1. 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
  • 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. 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
View all 48 questions

LTIMindtree Graduate Engineer Trainee (Get) Interview Experiences

74 interviews found

I applied via campus placement at Nitte Meenakshi Institute of Technology, Bangalore and was interviewed in Oct 2022. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Acid properties in dbms
  • Ans. 

    Acid properties in DBMS refer to the properties that ensure data consistency and reliability.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit of work.

    • Consistency ensures that the database remains in a valid state before and after a transaction.

    • Isolation ensures that concurrent transactions do not interfere with each other.

    • Dur...

  • Answered by AI
  • Q2. Write a program to reverse a string
  • Ans. 

    Program to reverse a string

    • Create an empty string to store the reversed string

    • Loop through the original string from the end to the beginning

    • Add each character to the new string

    • Return the new string

  • Answered by AI
  • Q3. Write a program to find the largest and second largest number in an array
  • Ans. 

    Program to find largest and second largest number in an array

    • Iterate through array and compare each element to current largest and second largest

    • Update variables accordingly

    • Return largest and second largest

  • Answered by AI
  • Q4. Oops concepts in Java
  • Ans. 

    Oops concepts in Java

    • Object-oriented programming paradigm

    • Encapsulation, Inheritance, Polymorphism, Abstraction

    • Classes, Objects, Methods, Interfaces, Packages

    • Example: Class Car with properties like make, model, year and methods like start, stop, accelerate

    • Example: Inheritance - Class SUV extends Car with additional properties like off-road capability

  • Answered by AI
  • Q5. How will I make a page or search engine like Google where I will type the words and get results?
  • Ans. 

    To create a search engine like Google, one needs to develop a web crawler, index the web pages, and use an algorithm to rank the results.

    • Develop a web crawler to scan the web pages and collect data

    • Index the collected data to make it searchable

    • Use an algorithm to rank the results based on relevance

    • Implement a user-friendly interface for users to input search queries

    • Continuously update and improve the search engine to pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was very easy, they asked very basic questions in dbms and java and gave 2 very basic programming questions.

Skills evaluated in this interview

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 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 - Aptitude Test 

Simple basic exam to test your logical and reasoning abilities

Round 3 - Coding Test 

It was a bit tricky but if you have basic knowledge of any programming language you would able to solve this.

Round 4 - Technical 

(2 Questions)

  • Q1. Some basic questions about yourself and some programming questions, they test your confidence levels and your knowledge on the subject.
  • Q2. What is sql? What is database?...and some data structure questions
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases.

    • SQL stands for Structured Query Language

    • It is used to create, modify, and query databases

    • A database is a collection of data organized in a structured way

    • Data structures used in databases include tables, indexes, and views

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. This was very easy if you reached to the HR round then you almost cracked it....here they just see your communication skills by asking 1 or 2 basic questions about yourself
  • Q2. Tell me about yourself....like type questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and try to brushup your programming knowledge before the 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. What are the different types of concrete?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 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 - Aptitude Test 

The first round was AMCAT which was a test with normal basic aptitude questions both logical and quantative and multiple choice coding questions of pseudo code format or error finding and also had an english or verbal section.

Round 3 - Coding Test 

The second round consist of a bot interview and automata which is a coding round with 2 coding questions of easy and intermediate respectively.

Round 4 - Technical 

(4 Questions)

  • Q1. In my technical round most of the questions were asked from react js and html domain as I mentioned it in my resume and some other OOPs and basic C++ questions were asked and also some basic theoretical DS...
  • Q2. Structure of an html file or DOM structure use of meta tag what are hooks in react how to import index.css in index.js router in react where is styling done and some other basic web dev questions
  • Ans. 

    Basic web development questions including HTML structure, React hooks, and styling.

    • HTML file structure includes head and body tags, with meta tags used for providing information about the page

    • React hooks are functions that allow for state and lifecycle methods in functional components

    • Index.css can be imported into index.js using the import statement

    • React Router is used for client-side routing in React applications

    • Styli...

  • Answered by AI
  • Q3. What is linked list difference between calloc and malloc
  • Ans. 

    A linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Linked lists are useful for dynamic data structures where the size of the data can change during runtime.

    • They can be singly linked or doubly linked.

    • Traversal of a linked list is done by starting at the head node and following the next pointers until the end is reached.

    • C++ example: struct Node { int data;...

  • Answered by AI
  • Q4. Difference between structure and classes
  • Ans. 

    Structures are used for storing data while classes are used for storing data and methods.

    • Structures are value types while classes are reference types.

    • Structures do not support inheritance while classes do.

    • Structures are used for simple data types while classes are used for complex data types.

    • Example of structure: struct Employee { int id; string name; }

    • Example of class: class Car { string make; string model; void start

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study whatever skills u mentioned in your resume thoroughly.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Oct 2022. There were 4 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 - Aptitude Test 

Normal preparation for Apti from IndiaBix and RS Aggarwal will work.

Round 3 - Coding Test 

Here the level was pretty good. You should be clear with basic programming concepts and some amount of practice will help.

Round 4 - Technical 

(2 Questions)

  • Q1. Questions related to my projects? What is my motivation my I'm stuck at a particular problem? Questions of SQL like joins index.. How do you handle stress and work pressure?\
  • Q2. Questions on SQL like joins, index, primary & foreign key

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the skills mentioned in your resume thoroughly.
Don't lie and wear confidence on your face during the interview.

LTIMindtree interview questions for designations

 Graduate Trainee

 (66)

 Production Graduate Engineer Trainee

 (2)

 Executive Graduate Trainee

 (1)

 Engineer Trainee

 (25)

 Graduate Engineer

 (71)

 Electrical GET

 (1)

 Associate Engineer Trainee

 (2)

 Trainee Quality Engineer

 (1)

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

I applied via campus placement at Terna Public Charitable Trust Engineering College, Navi Mumbai and was interviewed before Jul 2022. There were 5 interview rounds.

Round 1 - Aptitude Test 

The aptitude Test was divided into four parts
1. Quants
2. logical
3. verbal
4. Technical questions - conceptual questions about C/C++, databases, operating systems and computer networks.
Questions were similar to all the questions you would expect from aptitude tests like number series, work done problems, etc.

Round 2 - Coding Test 

The coding test consisted of two questions, which would determine the offer you would be interviewing for, solve one question and you would be interviewed for a 5 lpa offer, solve another one and would be interviewed for a 6.5 lpa offer.

Round 3 - Technical 

(1 Question)

  • Q1. It was a one-on-one interview, basic questions about data structures, databases, operating systems, and computer networks were asked along with extra technologies mentioned on your resume, keep your resume...
Round 4 - Communication test 

(1 Question)

  • Q1. This was an online test that tested your reading, listening, speaking, and understanding ability of the English language.
Round 5 - HR 

(1 Question)

  • Q1. HR only asks basic questions you would expect like "willing to relocate?", "willing to work in any technology assigned, etc."

Interview Preparation Tips

Interview preparation tips for other job seekers - For the first round, there are various books as well as online tests available to prepare for aptitude tests.
For coding, practice data structure-related questions.
The technical round can be cleared easily by just learning the basics of DSA, OS, DBMS, and CN.
In the HR round just stay positive.

Get interview-ready with Top LTIMindtree Interview Questions

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

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Logical reasoning , verbal , pseudo codes , data structures all are mcqs

Round 3 - Technical 

(1 Question)

  • Q1. Have the chance to select any one coding language and they ask the basic questions on it. I said c language , after some basic questions they asked about write the simple interest program. After said brief...
Round 4 - HR 

(1 Question)

  • Q1. How much ctc you are expecting? Family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool and tension free while answering the questions. Intrerview ends up in 30 mins.

I applied via Campus Placement and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Common aptitude questions(easy to moderate). consist of around 6 sections with quantitative, qualitative, verbal, logical and reasoning, sql, cloud, output for programs.

Round 2 - Coding Test 

Only if achieved maximum questions in round 1 from coding part, else will be qualified for a 4lpa profile interview

Round 3 - Technical 

(4 Questions)

  • Q1. I was from mechanical domain so they just asked about my projects and some basic sql questions with some HR questions.
  • Q2. What is ddl, dcl, tcl?
  • Ans. 

    DDL, DCL, and TCL are SQL commands used to manage database objects and transactions.

    • DDL (Data Definition Language) is used to create, modify, and delete database objects like tables, indexes, and views.

    • DCL (Data Control Language) is used to control access to the database by granting or revoking privileges to users.

    • TCL (Transaction Control Language) is used to manage transactions by committing or rolling back changes ma...

  • Answered by AI
  • Q3. What does select command do?
  • Ans. 

    SELECT command is used to retrieve data from a database table.

    • It is a SQL command.

    • It is used to retrieve data from one or more tables.

    • It can be used with various clauses like WHERE, ORDER BY, GROUP BY, etc.

    • Example: SELECT * FROM customers WHERE city='New York';

  • Answered by AI
  • Q4. What is oops? inheritance and all.
  • Ans. 

    OOPs stands for Object-Oriented Programming. Inheritance is a feature of OOPs that allows a class to inherit properties and methods from another class.

    • OOPs is a programming paradigm that focuses on objects and their interactions.

    • Inheritance is a mechanism that allows a class to inherit properties and methods from another class.

    • There are different types of inheritance, such as single, multiple, and hierarchical inherita...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. General introduction followed by some HR questions?
  • Q2. Why do you want to join mindtree?

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack, no need to worry about anything. just speak positively and have the basics brushed up.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quantitative aptitude, logical reasoning

Round 2 - Coding Test 

2 questions 60 minutes

Round 3 - One-on-one 

(1 Question)

  • Q1. Core java questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Aptitude Test 

Work, time , train problems, permutation and combination etc

Round 3 - Coding Test 

Automata based question after aptitude round

Round 4 - Technical 

(1 Question)

  • Q1. Started with introduction and then they will ask about language that you have chosen
Round 5 - HR 

(1 Question)

  • Q1. Leadership skills , personal details, mindset etc

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for aptitude it is really tough for engineers those who just ending their day by coding and coding
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Aptitude Test 

Basic aptitude questions

Round 3 - Coding Test 

Easy to medium level coding Questions

Round 4 - Technical 

(1 Question)

  • Q1. OOPS concept project based simple coding questions like swap 2 values without 3rd variable
Round 5 - HR 

(1 Question)

  • Q1. Introduction scenario based questions

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 46 interviews

7 Interview rounds

  • Aptitude Test Round - 1
  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • HR Round - 3
  • Aptitude Test Round - 2
  • Personal Interview1 Round
View more
LTIMindtree Graduate Engineer Trainee (Get) Salary
based on 478 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.8 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.6 L/yr

Senior Engineer
4.4k salaries
unlock blur

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