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

Interview Questionnaire 

8 Questions

  • Q1. Tell something about yourself
  • Q2. Where do you see yourself 5 years from now
  • Q3. Are you fine with relocation
  • Q4. What have you done to improve your weakness
  • Q5. What is SQL
  • 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

    • Common commands include SELECT, INSERT, UPDATE, and DELETE

    • Examples of database management systems that use SQL include MySQL, Oracle, and Microsoft SQL Server

  • Answered by AI
  • Q6. What is schema
  • Ans. 

    Schema is a blueprint or structure that defines the organization of data in a database.

    • Schema is used to define the structure of a database.

    • It includes information about tables, columns, data types, relationships, and constraints.

    • It helps ensure data consistency and integrity.

    • Examples of schema include SQL Server, Oracle, and MySQL.

    • Schema can also refer to the organization of data in XML or JSON documents.

  • Answered by AI
  • Q7. What is exception handling in java
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in Java programs.

    • Exceptions are objects that represent errors or exceptional conditions that occur during program execution.

    • Java provides try-catch-finally blocks to handle exceptions.

    • The try block contains the code that might throw an exception.

    • The catch block catches the exception and handles it.

    • The finally block contains code that is executed regardless of w...

  • Answered by AI
  • Q8. Does schema consist more than 1 database. Example
  • Ans. 

    Yes, a schema can consist of multiple databases.

    • A schema is a logical container for database objects.

    • Multiple databases can be grouped under a single schema.

    • For example, a company may have separate databases for HR, finance, and sales, but all under the same schema.

    • This allows for easier management and organization of the databases.

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: It was a good experience.
Tips: Prepare well

Round: Technical Interview
Experience: It was a good experience.
Tips: Prepare well for the subjects you have mentioned in the resume.

Skills:
College Name: Vidyalankar Institute Of Technology
Motivation: L&T infotech is one of the fastest growing company and good for freshers.

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I didn't answer 2 questions, it is fine if you don't answer the question rather than making the interviewer fool
Tips: Prepare core subjects very well

  • 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 number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • 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:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Use built-in functions like reverse() or slicing to reverse the string.

    • Handle special characters and numbers while reversing the string.

    • Ensure to consider the constraints provided in the problem statement.

    • Implement a function that takes a string

  • Answered by AI
  • Q3. What is polymorphism in C++?
  • Ans. 

    Polymorphism in C++ allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism is achieved through function overloading and overriding.

    • Function overloading allows multiple functions with the same name but different parameters.

    • Function overriding involves redefining a base class function in a derived class.

    • Polymorphism enables dynamic binding and late binding.

    • Example: Animal class w...

  • Answered by AI
  • Q4. Write an SQL query to find all the students with marks greater than the average marks.
  • Ans. 

    SQL query to find students with marks greater than average marks

    • Calculate the average marks first

    • Use a subquery to compare each student's marks with the average marks

    • Select students where marks are greater than the average

  • Answered by AI
  • Q5. Does C support function overloading?
  • Ans. 

    No, C does not support function overloading.

    • C does not support function overloading, where multiple functions can have the same name but different parameters.

    • In C, if you declare two functions with the same name, the compiler will throw an error.

    • Example: int add(int a, int b) and float add(float a, float b) cannot coexist in C.

  • Answered by AI
  • Q6. Is it allowed in C++ to have two functions with the same name?
  • Ans. 

    Yes, it is allowed in C++ to have two functions with the same name as long as they have different parameters.

    • Function overloading in C++ allows multiple functions with the same name but different parameters.

    • The compiler distinguishes between the functions based on the number or types of parameters.

    • Example: void display(int x) and void display(float y) can coexist in C++.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

t was my third company in campus. So the first question was surely expected, and I was prepared for that. If you clear the technical round then the ball is in your court. You can ace the HR round.
Tips: Just be yourself. Be prepared with basic HR questions.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALTI - Larsen & Toubro Infotech interview preparation:Topics to prepare for the interview - Programming , Communication Skills, Database Skills, DSA, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

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. What are the different types of concrete?

Interview Questionnaire 

8 Questions

  • Q1. What portions of IT do you know?
  • Ans. 

    I have knowledge in various areas of IT including networking, programming, databases, and cybersecurity.

    • Networking: I am familiar with concepts such as IP addressing, routing, and network protocols.

    • Programming: I have experience in languages like Java, Python, and C++, and can develop software applications.

    • Databases: I am proficient in working with SQL databases and can design and optimize database structures.

    • Cybersecu...

  • Answered by AI
  • Q2. What is a class?
  • Ans. 

    A class is a blueprint for creating objects that have similar attributes and behaviors.

    • A class is a user-defined data type that encapsulates data and functions.

    • It provides a way to organize and structure code.

    • Objects are instances of a class.

    • Classes can inherit properties and methods from other classes.

    • Example: A class 'Car' can have attributes like 'color', 'model', and methods like 'start', 'stop'.

  • Answered by AI
  • Q3. What are different types of data structures?
  • Ans. 

    Data structures are ways to organize and store data in a computer program.

    • Some common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • Arrays are a collection of elements of the same data type, accessed by an index.

    • Linked lists are a sequence of nodes, each containing data and a reference to the next node.

    • Stacks are a last-in, first-out (LIFO) data structure, where elements are added and ...

  • Answered by AI
  • Q4. Give an example of stack in real life
  • Ans. 

    A stack is a data structure where elements are added and removed from the top only.

    • A stack of plates in a buffet where the top plate is the only one accessible

    • A browser's back button where the previous pages are stored in a stack

    • A stack of books where the top book is the one you can read

    • A stack of trays in a cafeteria where the top tray is the only one you can take

    • A stack of pancakes where the top pancake is the one yo

  • Answered by AI
  • Q5. How was your day?
  • Ans. 

    My day was productive and fulfilling.

    • I completed all my tasks on time.

    • I had a successful meeting with a client.

    • I learned a new skill during a training session.

    • I received positive feedback from my supervisor.

  • Answered by AI
  • Q6. Why do you want to join us?
  • Ans. 

    I want to join GET because of the company's innovative approach and strong reputation in the industry.

    • I am impressed by GET's track record of developing cutting-edge technologies.

    • I believe that working at GET will provide me with valuable opportunities for professional growth.

    • GET's commitment to excellence aligns with my own values and aspirations.

    • I am excited about the possibility of contributing to GET's mission and

  • Answered by AI
  • Q7. What is the surity that you will continue with us?
  • Ans. 

    I am highly motivated and committed to my work. I have a strong track record of long-term employment and loyalty.

    • I have been with my current employer for over 5 years and have consistently received positive performance reviews.

    • I am dedicated to my career and have invested time and effort in developing my skills and knowledge.

    • I have a strong work ethic and take pride in delivering high-quality results.

    • I am excited about...

  • Answered by AI
  • Q8. What are you stengths and weaknesses?
  • Ans. 

    My strengths include strong communication skills, adaptability, and attention to detail. My weaknesses include being overly critical of myself and sometimes struggling with time management.

    • Strength: Strong communication skills - I am able to effectively convey information and ideas to others.

    • Strength: Adaptability - I am able to quickly adjust to new situations and work well under pressure.

    • Strength: Attention to detail...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It is simple. Be calm and you will be through.

Round: Group Discussion
Experience: They are looking for people who can speak without grammatical mistakes.
Tips: If possible take a start and let all speak.
Duration: 15 minutes

Round: Paragraph writing
Experience: It was to test if you are fluent in writing. They were to check the errors made during writing.
Tips: It is fun but don't lose your composure.

Round: Technical Interview
Experience: It was fun.
Tips: If you are from non CSE, at least read the basics and the CSE subjects included in your syllabus.

Round: HR Interview
Experience: It is the real fun. It is more like a conversation with a friend. They are experienced so they will get the thing out which they want.
Tips: It would suggest 'not to lie'.

Skills: C
College Name: NIT AGARTALA

Skills evaluated in this interview

Interview Questionnaire 

16 Questions

  • Q1. Write a program to display prime numbers from 1-35
  • Ans. 

    Program to display prime numbers from 1-35

    • Loop through numbers 1-35

    • Check if each number is prime

    • If prime, display the number

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

    A 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. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • Example: A shape class can have different subclasses like circle, square, triangle, etc. and all can be treated as shapes.

    • Polymorphism helps in achieving code reusability and flexibility.

  • Answered by AI
  • Q4. Is method overloading possible in c++?
  • Ans. 

    Yes, method overloading is possible in C++.

    • Method overloading allows multiple functions with the same name but different parameters.

    • The compiler determines which function to call based on the number and types of arguments passed.

    • Example: void print(int x), void print(float x), void print(char x) can all be overloaded.

    • Overloading can also be done with operators like +, -, *, /, etc.

    • Overloading improves code readability

  • Answered by AI
  • Q5. One question on database to find the max mks from student table
  • Q6. BE project, what softwares you will use?
  • Ans. 

    I will use software tools that are relevant to my BE project.

    • The software tools I will use will depend on the nature of my BE project.

    • For example, if my project involves designing a circuit, I may use software like LTSpice or Proteus.

    • If my project involves programming, I may use software like Visual Studio or Eclipse.

    • I will also use software for data analysis and visualization, such as MATLAB or Python.

    • Ultimately, I wi...

  • Answered by AI
  • Q7. Can we write int func() and int func(int a) in a single class?
  • Ans. 

    Yes, we can write int func() and int func(int a) in a single class.

    • We can overload the function with different parameters.

    • The function with no parameter is called default constructor.

    • Example: class MyClass { int func(); int func(int a); };

    • Both functions can have different implementations.

  • Answered by AI
  • Q8. How to insert a java code in (html tags) 9
  • Ans. 

    You can insert Java code in HTML tags using the <script> tag.

    • Use the <script> tag to insert Java code within HTML tags.

    • Make sure to properly close the <script> tag.

    • Example: <script>System.out.println('Hello, World!');</script>

  • Answered by AI
  • Q9. Features of OOPS
  • Ans. 

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

    • Encapsulation: bundling of data and methods that operate on that data

    • Inheritance: ability of a class to inherit properties and methods from a parent class

    • Polymorphism: ability of objects to take on multiple forms or behaviors

    • Abstraction: hiding of complex implementation details from the user

    • Examples: Java, C++, Python

  • Answered by AI
  • Q10. Any questions about the organization?
  • Ans. 

    Yes, can you tell me more about the company culture and values?

    • What are the core values of the organization?

    • How does the company foster a positive work environment?

    • What is the company's approach to diversity and inclusion?

    • Can you provide examples of how the company supports employee growth and development?

  • Answered by AI
  • Q11. Previous companies attended by you
  • Ans. 

    I have previously worked at three companies.

    • Worked as a software engineer at XYZ Inc. for 2 years

    • Interned at ABC Corp. for 6 months during college

    • Started my career as a junior developer at DEF Ltd. for 1 year

  • Answered by AI
  • Q12. Why didn't you clear the aptitude?
  • Ans. 

    I didn't clear the aptitude because I lacked preparation and practice.

    • I didn't have enough time to prepare for the exam

    • I underestimated the difficulty level of the questions

    • I didn't practice enough mock tests

    • I lacked confidence during the exam

    • I have learned from my mistakes and will work harder next time

  • Answered by AI
  • Q13. What you learnt from this failure?
  • Ans. 

    I learned the importance of thorough planning and communication.

    • Thorough planning can prevent oversights and mistakes.

    • Effective communication can prevent misunderstandings and ensure everyone is on the same page.

    • It's important to learn from mistakes and use them as opportunities for growth.

    • For example, in my previous project, we failed to properly plan for potential roadblocks and didn't communicate effectively with al...

  • Answered by AI
  • Q14. Are you ready to relocate? (she asked me this question 3 times)
  • Q15. About weakness which was mentioned in the form given by them
  • Q16. Any question about the organization?
  • Ans. 

    Yes, we are a non-profit organization dedicated to promoting education in underprivileged communities.

    • Our organization focuses on providing educational resources to children in low-income areas.

    • We partner with local schools and community centers to offer after-school programs and tutoring services.

    • We also provide scholarships and grants to help students pursue higher education.

    • Our goal is to break the cycle of poverty ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Section 1 was quant. It was very simple. Practice basic questions
Logical reasoning and English sections were slightly tough than quantitative.Overall aptitude was simple and easy to pass
Tips: Try to attempt all questions because there is no negative marking.
Duration: 60 minutes
Total Questions: 60

Round: Group Discussion
Experience: Spoke about the Haryana district with the live examples of two sisters Geeta Kumari and Babita Kumari, who won gold medals in wrestling.
Also mentioned about Saina Nehwal.
Basically I agreed that India is not a mail dominant country.
Tips: Give examples as much as you can, examples portray how well you understand the topic. The examples should be about recent happenings
It also shows how much are you aware about the current scenario.
Stick to one side, if you are speak the first point for the topic, that is "India is a male dominant country" then don't go against this during the second point
No of times you speak, also matters.
Duration: 20-25mins minutes

Round: Technical Interview
Experience: I didn't answer 2 questions, it is fine if you don't answer the question rather than making the interviewer fool
Tips: Prepare core subjects very well
Be prepared to answer the last question, it shows your interest in the company

Round: HR Interview
Experience: It was my third company in campus. So the first question was surely expected, and I was prepared for that. If you clear the technical round then the ball is in your court. You can ace the HR round.
Tips: Just be yourself. Be prepared with basic  HR questions.

Round: Paragraph writing
Experience: Topic - Effect of public holidays on Indian economy
Tips: Write atmost one page.3/4th page is also fine.

Skills: Programming , Communication Skills, Database Skills
College Name: VIDYALANKAR INSTITUTE OF TECHNOLOGY

Skills evaluated in this 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)

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

₹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