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 was interviewed in Sep 2016.

Interview Questionnaire 

2 Questions

  • Q1. Database question
  • Q2. Hobbies,some scenarios,told to sell a black and white painting

Interview Preparation Tips

Round: Test
Experience: It was a pure technical test.some students tried to cheat and they were told to leave the test then and there.rest was good
Duration: 1 hour
Total Questions: 50

Round: Group Discussion
Experience: Pretty much like normal gd
Duration: 1 hour

Round: Technical Interview
Experience: DBMS joins questions mainly.

Round: HR Interview
Experience: Hr interview was also a deletion round.It was a bit of pressure interview.

Skills: Technical Analysis
College Name: K.K.Wagh Institute of Engineering Education & Research, Nashik

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

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 

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. 

    Java code can be inserted in HTML using