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 

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