AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.7

based on 22.9k Reviews

Play video Play video Video summary

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern
golden leaf award AmbitionBox awards

Top Rated Mega Company - 2025

golden leaf award
golden leaf award AmbitionBox awards

Top Rated Company for Women - 2025

golden leaf award
golden leaf award AmbitionBox awards

Top Rated IT/ITES Company - 2025

golden leaf award
  • About
  • Reviews
    22.9k
  • Salaries
    1.8L
  • Interviews
    3k
  • Jobs
    368
  • Benefits
    1.3k
  • Photos
    34
  • Posts
    18

Filter interviews by

LTIMindtree Graduate Engineer Interview Questions and Answers

Updated 25 Feb 2025

44 Interview questions

A Graduate Engineer was asked 4mo ago
Q. Write code to perform matrix multiplication.
Ans. 

Matrix multiplication code implementation in C++

  • Declare two matrices A and B of appropriate sizes

  • Iterate through rows and columns to calculate each element of the resulting matrix C

  • Use nested loops for efficient computation

  • Ensure the number of columns in matrix A is equal to the number of rows in matrix B

  • Example: A = {{1, 2}, {3, 4}}, B = {{5, 6}, {7, 8}}, C = A*B = {{19, 22}, {43, 50}}

A Graduate Engineer was asked 4mo ago
Q. What are some real-life examples that illustrate the concepts of Object-Oriented Programming (OOP)?
Ans. 

Real-life examples of Object-Oriented Programming include modeling a car as an object with properties and methods.

  • Modeling a car as an object with properties like color, make, model, and methods like start, stop, accelerate

  • Creating a banking system where accounts are objects with properties like balance and methods like deposit, withdraw

  • Developing a video game where characters are objects with properties like heal...

Graduate Engineer Interview Questions Asked at Other Companies

asked in Worley
Q1. What is Finite Element Analysis? Explain with examples.
View answers (2)
asked in Toshiba Transmission & Distribution Systems
Q2. Why is the Open Circuit test performed on the Low Voltage (LV) si ... read more
View answers (2)
asked in CMR Green Technologies
Q3. How do you calculate the deflection of conical bodies under axial ... read more
View answers (2)
asked in Worley
Q4. What is ductility of a metal? Does temperature have any effect on ... read more
View answer (1)
asked in Petrofac
Q5. What are the different types of sensors used in the oil and gas i ... read more
View answer (1)
View All
A Graduate Engineer was asked 4mo ago
Q. What is the thread lifecycle in programming?
Ans. 

Thread lifecycle in programming refers to the various stages a thread goes through from creation to termination.

  • Thread creation: A new thread is created using the 'Thread' class or by implementing the 'Runnable' interface.

  • Thread start: The thread transitions from 'new' to 'runnable' state when 'start()' method is called.

  • Thread running: The thread is executing its task in the 'running' state.

  • Thread waiting: The thr...

A Graduate Engineer was asked 4mo ago
Q. What is the purpose of collections in Java?
Ans. 

Collections in Java are used to store and manipulate groups of objects.

  • Collections provide a way to store, retrieve, and manipulate groups of objects in Java.

  • They offer various data structures like lists, sets, maps, etc. for different purposes.

  • Collections framework includes interfaces like List, Set, Map, and classes like ArrayList, HashSet, HashMap.

  • Collections provide methods for sorting, searching, and iteratin...

What people are saying about LTIMindtree

View All
a senior software engineer
1w
Need clarity on Ltimindtree's Variable pay
Hi, I have received an Offer from LTIMINDTREE, and there offering 24L(5Yoe) P3, 21.8L as Fixed and 2L as variable pay monthly. Client is Amazon I also have another offer with HTC, have two questions on the vp. The HR is trying to say that the VP is like non performance, regardless of performance you'll get it unless other companies which offer it based on performance...is this tru ? Then if I'm receiving a hike next year, what it'll be based on ?, will the 2.2L VP apply again next year. Hows the hike and promotion ? LTIMindtree
FeedCard Image
Got a question about LTIMindtree?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Graduate Engineer was asked 4mo ago
Q. What are the key concepts of Object-Oriented Programming (OOP)?
Ans. 

Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class.

  • Abstraction: Hiding complex implementation details and...

A Graduate Engineer was asked 5mo ago
Q. Write code to generate the first 12 prime numbers.
Ans. 

The code to generate the first 12 prime numbers involves checking divisibility by numbers up to the square root of the number.

  • Start with a list of prime numbers and a counter for the number of primes found.

  • Loop through numbers starting from 2 and check if they are prime by dividing them by all previous prime numbers.

  • If a number is not divisible by any previous prime numbers, add it to the list of primes.

  • Continue t...

A Graduate Engineer was asked 5mo ago
Q. What is the code to calculate the factorial of a number?
Ans. 

Factorial of a number is calculated by multiplying all positive integers up to that number.

  • Use a loop to multiply all positive integers up to the given number.

  • Handle edge cases like 0 and negative numbers separately.

  • Example: For input 5, factorial = 5*4*3*2*1 = 120.

Are these interview questions helpful?
A Graduate Engineer was asked 6mo ago
Q. Explain the different types of joins with real-life examples.
Ans. 

Different types of joins in databases with real life examples

  • Inner Join: Returns rows when there is a match in both tables. Example: Matching students with their courses.

  • Left Join: Returns all rows from the left table and the matched rows from the right table. Example: All employees and their assigned projects.

  • Right Join: Returns all rows from the right table and the matched rows from the left table. Example: All ...

A Graduate Engineer was asked 6mo ago
Q. What is cross-site scripting?
Ans. 

Cross site scripting (XSS) is a type of security vulnerability typically found in web applications where malicious scripts are injected into trusted websites.

  • XSS allows attackers to execute scripts in the victim's browser, potentially stealing sensitive information or altering the website's content.

  • There are three main types of XSS: stored XSS, reflected XSS, and DOM-based XSS.

  • Preventing XSS involves input validat...

A Graduate Engineer was asked 6mo ago
Q. What is MITM?
Ans. 

MITM stands for Man-in-the-Middle attack, where a third party intercepts communication between two parties without their knowledge.

  • MITM attack involves a hacker intercepting communication between two parties to steal information or manipulate data.

  • Common examples include eavesdropping on Wi-Fi networks or intercepting emails.

  • To prevent MITM attacks, encryption and secure communication protocols like HTTPS are used...

1 2 3 4 5

LTIMindtree Graduate Engineer Interview Experiences

71 interviews found

Graduate Engineer Interview Questions & Answers

user image Prathamesh Karwal

posted on 20 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude + Communication Assessment (Online MCQ)

Round 2 - Technical 

(5 Questions)

  • Q1. What is the Difference between C & C++?
  • Ans. 

    C is a procedural programming language while C++ is a multi-paradigm programming language with object-oriented features.

    • C is a procedural programming language while C++ supports both procedural and object-oriented programming.

    • C does not have classes and objects like C++.

    • C++ has features like inheritance, polymorphism, and encapsulation which are not present in C.

    • C++ allows function overloading and operator overloading ...

  • Answered by AI
    Add your answer
  • Q2. Questions on OOP's Concepts.
  • Add your answer
  • Q3. Explain Your Major Project.
  • Ans. 

    Designed and implemented a smart irrigation system using IoT technology.

    • Researched different sensors to monitor soil moisture levels

    • Developed a mobile app to remotely control the irrigation system

    • Integrated weather forecasting data to optimize watering schedules

  • Answered by AI
    Add your answer
  • Q4. Can you explain process you follow to deploy your project?
  • Ans. 

    I follow a systematic process involving testing, staging, and production deployment.

    • 1. Develop and test the project locally to ensure functionality.

    • 2. Push the code to a staging environment for further testing.

    • 3. Once approved, deploy the project to production environment.

    • 4. Monitor the deployment for any issues and troubleshoot if necessary.

  • Answered by AI
    Add your answer
  • Q5. Mostly asked Coding questions like Prime number, Palindrome, Reverse array/string etc.
  • Add your answer
Round 3 - HR 

(5 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent graduate with a degree in engineering, passionate about problem-solving and eager to apply my skills in a professional setting.

    • Graduated with a degree in engineering

    • Passionate about problem-solving

    • Eager to apply skills in a professional setting

  • Answered by AI
    Add your answer
  • Q2. What challenges have you encountered in your projects, and how did you overcome them?
  • Ans. 

    I have encountered challenges such as tight deadlines, communication issues, and technical difficulties in my projects.

    • Tight deadlines required effective time management and prioritization of tasks.

    • Communication issues were resolved through regular meetings and clear documentation.

    • Technical difficulties were overcome by seeking help from colleagues or conducting research.

  • Answered by AI
    Add your answer
  • Q3. Are you ready to work in different shifts?
  • Ans. 

    Yes, I am ready to work in different shifts as required for the job.

    • I am flexible and adaptable to different work schedules.

    • I understand the importance of teamwork and meeting project deadlines.

    • I am willing to work evenings, nights, weekends, and holidays if needed.

    • I have previous experience working in shifts during internships or part-time jobs.

  • Answered by AI
    Add your answer
  • Q4. Are you ready to relocate at different locations?
  • Ans. 

    Yes, I am open to relocating for new opportunities and experiences.

    • I am willing to relocate for career growth and new challenges.

    • I understand that relocating may be necessary for certain job opportunities.

    • I am flexible and adaptable to new environments and locations.

  • Answered by AI
    Add your answer
  • Q5. How adaptable you are?
  • Ans. 

    I am highly adaptable, able to quickly learn new skills and adjust to new environments.

    • I have successfully transitioned between different engineering roles, such as moving from mechanical engineering to software engineering.

    • I am comfortable working in fast-paced and ever-changing environments.

    • I have a track record of quickly adapting to new technologies and tools, such as learning a new programming language for a proje...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for LTIMindtree Graduate Engineer interview:
  • OOPS
  • SQL
  • OS
  • Your Projects
  • Mostly Asked Coding questions
Interview preparation tips for other job seekers - 1. Be Confident with excellent communication.
2. You must know all about whatever you have added in your resume.
3. Be prepared with all Previously asked questions.
4. Don't Answer shortly answer at least in one or two sentence

Skills evaluated in this interview

Anonymous

Graduate Engineer Interview Questions & Answers

user image Tejas Kulkarni

posted on 20 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The questions given were a bit tricky and hard but was challenging to solve it and crack the exam.

Round 2 - Technical 

(2 Questions)

  • Q1. The projects done in my entire course and to explain
  • Ans. 

    I have completed various projects during my engineering course, ranging from designing prototypes to conducting research.

    • Designed a prototype for a sustainable energy system

    • Conducted research on improving the efficiency of solar panels

    • Developed a software tool for analyzing structural integrity of buildings

  • Answered by AI
    Add your answer
  • Q2. Real time internet development
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Reason for choosing LTIMindtree
  • Ans. 

    Chose LTIMindtree for its reputation, innovative projects, and opportunities for growth.

    • Reputation: LTIMindtree is known for its strong reputation in the industry.

    • Innovative projects: I was attracted to the company's focus on cutting-edge technologies and projects.

    • Opportunities for growth: LTIMindtree offers ample opportunities for career development and advancement.

    • Work culture: The company's work culture and values a...

  • Answered by AI
    Add your answer
  • Q2. Why did i choose to do my graduation in Amrita university
  • Ans. 

    Chose Amrita University for its excellent reputation in engineering education, state-of-the-art facilities, and strong industry connections.

    • Reputation for quality education in engineering

    • State-of-the-art facilities and infrastructure

    • Strong industry connections for internships and placements

  • Answered by AI
    Add your answer
Anonymous

Graduate Engineer Interview Questions & Answers

user image muthu

posted on 23 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, passionate about problem-solving and eager to learn and grow in the field.

    • Recent graduate with a degree in engineering

    • Passionate about problem-solving

    • Eager to learn and grow in the field

  • Answered by AI
    Add your answer
  • Q2. Which language are you proficient
  • Add your answer
  • Q3. Does C program run without main function
  • Ans. 

    No, a C program cannot run without a main function.

    • The main function is the entry point of a C program, without it the program cannot be executed.

    • The main function is mandatory in C programming as it tells the compiler where to start the execution of the program.

    • Attempting to compile a C program without a main function will result in a compilation error.

  • Answered by AI
    Add your answer
  • Q4. What function used to change string to int
  • Ans. 

    The function used to change a string to an integer is parseInt() in JavaScript.

    • parseInt() function is used to convert a string to an integer in JavaScript.

    • It takes in the string as an argument and returns the integer value.

    • Example: parseInt('10') will return 10.

  • Answered by AI
    Add your answer
  • Q5. What is the difference between type casting and type conversion
  • Ans. 

    Type casting is changing the data type of a variable, while type conversion is converting a value from one data type to another.

    • Type casting is done explicitly by the programmer, while type conversion can be done implicitly by the compiler.

    • Type casting can lead to loss of data if the new data type cannot hold the original value, while type conversion may involve data loss depending on the conversion.

    • Example of type cas...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics & you can crack easily, Be confident on the skills that you mention on your resume

Skills evaluated in this interview

Anonymous

Graduate Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2025

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

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

The aptitude test will be conducted online.

Round 2 - Technical 

(7 Questions)

  • Q1. Can you tell me about yourself?
  • Add your answer
  • Q2. What is the thread lifecycle in programming?
  • Ans. 

    Thread lifecycle in programming refers to the various stages a thread goes through from creation to termination.

    • Thread creation: A new thread is created using the 'Thread' class or by implementing the 'Runnable' interface.

    • Thread start: The thread transitions from 'new' to 'runnable' state when 'start()' method is called.

    • Thread running: The thread is executing its task in the 'running' state.

    • Thread waiting: The thread c...

  • Answered by AI
    Add your answer
  • Q3. What is the purpose of collections in Java?
  • Ans. 

    Collections in Java are used to store and manipulate groups of objects.

    • Collections provide a way to store, retrieve, and manipulate groups of objects in Java.

    • They offer various data structures like lists, sets, maps, etc. for different purposes.

    • Collections framework includes interfaces like List, Set, Map, and classes like ArrayList, HashSet, HashMap.

    • Collections provide methods for sorting, searching, and iterating ove...

  • Answered by AI
    Add your answer
  • Q4. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class.

    • Abstraction: Hiding complex implementation details and show...

  • Answered by AI
    Add your answer
  • Q5. What are some real-life examples that illustrate the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Real-life examples of Object-Oriented Programming include modeling a car as an object with properties and methods.

    • Modeling a car as an object with properties like color, make, model, and methods like start, stop, accelerate

    • Creating a banking system where accounts are objects with properties like balance and methods like deposit, withdraw

    • Developing a video game where characters are objects with properties like health, p...

  • Answered by AI
    Add your answer
  • Q6. Write a code for matrix multiplication?
  • Ans. 

    Matrix multiplication code implementation in C++

    • Declare two matrices A and B of appropriate sizes

    • Iterate through rows and columns to calculate each element of the resulting matrix C

    • Use nested loops for efficient computation

    • Ensure the number of columns in matrix A is equal to the number of rows in matrix B

    • Example: A = {{1, 2}, {3, 4}}, B = {{5, 6}, {7, 8}}, C = A*B = {{19, 22}, {43, 50}}

  • Answered by AI
    Add your answer
  • Q7. Could you provide details about your academic project?
  • Ans. 

    Designed and implemented a smart irrigation system using IoT technology.

    • Researched various sensors and actuators suitable for monitoring soil moisture levels and controlling water flow.

    • Developed a mobile application to remotely monitor and control the irrigation system.

    • Implemented machine learning algorithms to optimize water usage based on weather forecasts and plant requirements.

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basic questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Essentially, your selection will depend on luck. Both of my interviews went well, but I was not selected, while some individuals with backlogs were selected.
Anonymous

Graduate Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

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

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

Round 1 - Aptitude Test 

Aptitude test had aptitude, logical reasoning and coding questions(2) .

Round 2 - Technical 

(2 Questions)

  • Q1. Focus more on CN, DBMS OS and OOPS concepts. And things on your resume
  • Add your answer
  • Q2. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability and promotes the concept of hierarchy

    • Derived class inherits properties and behaviors from a base class

    • Types of inheritance include single, multiple, multilevel, and hierarchical

    • Example: Class 'Car' can inherit from class 'Vehicle' to access common attributes like 'color...

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Inteoduce yourself , Hobbies etc.
  • Ans. 

    I am a recent graduate with a degree in Engineering. I enjoy hiking, playing guitar, and volunteering at local community events.

    • Recent graduate with degree in Engineering

    • Hobbies include hiking, playing guitar, and volunteering

    • Active member in local community events

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on CN, DBMS , OS, Oops and things on your resume. Be confident and fluent. Good luck!
Anonymous

Graduate Engineer Interview Questions & Answers

user image Hema Chandana

posted on 20 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Master logical reasoning thoroughly and develop a strong proficiency in English and mathematics.

Round 2 - Technical 

(1 Question)

  • Q1. What is your knowledge of Java?
  • Ans. 

    Proficient in Java with experience in object-oriented programming, data structures, and algorithms.

    • Strong understanding of Java syntax and concepts such as classes, objects, inheritance, polymorphism, and interfaces.

    • Experience in developing applications using Java frameworks like Spring and Hibernate.

    • Knowledge of data structures and algorithms in Java for efficient problem-solving.

    • Familiarity with Java libraries and to...

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. What challenges did you encounter during your academic projects?
  • Ans. 

    I encountered challenges such as time management, technical difficulties, and team communication during my academic projects.

    • Time management was a challenge as balancing multiple projects and deadlines was difficult.

    • Technical difficulties arose when implementing complex algorithms or using unfamiliar software.

    • Team communication issues occurred when coordinating schedules and dividing tasks efficiently.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the programming languages listed in the resume.
Anonymous

Graduate Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

The test is on the I am neo platform.

Round 2 - Technical 

(1 Question)

  • Q1. Basic coding on programming
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Questions about relocation and personal.
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong foundation in the concepts.
Anonymous

Graduate Engineer Interview Questions & Answers

user image Saumodeep Dutta

posted on 17 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical, English, Audio

Round 2 - Technical 

(2 Questions)

  • Q1. Lifecycle components of threads
  • Ans. 

    Lifecycle components of threads include creation, scheduling, execution, and termination.

    • Creation: Threads are created using the 'Thread' class in Java or 'pthread_create' function in C.

    • Scheduling: Threads are scheduled by the operating system based on priority and other factors.

    • Execution: Threads execute the code specified in their run method or function.

    • Termination: Threads can terminate either by completing their ta...

  • Answered by AI
    Add your answer
  • Q2. What are the types of Exceptions
  • Ans. 

    Types of Exceptions include checked, unchecked, and errors.

    • Checked Exceptions: Must be either caught or declared in the method signature. Example: IOException

    • Unchecked Exceptions: Not required to be caught or declared. Example: NullPointerException

    • Errors: Irrecoverable issues that should not be caught or handled. Example: OutOfMemoryError

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join the company
  • Add your answer
  • Q2. What is your career aspiration in techinal domain
  • Add your answer

Skills evaluated in this interview

Anonymous

Graduate Engineer Interview Questions & Answers

user image Nikhil S

posted on 20 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Questions on Logical Reasoning and all

Round 2 - Technical 

(1 Question)

  • Q1. Whole java questions from basics to advanced
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. General Hr Questions like introduction and projects
  • Add your answer
Anonymous

Graduate Engineer Interview Questions & Answers

user image Dheeraj Marni

posted on 20 Dec 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

About project and Role in project

Round 2 - Technical 

(2 Questions)

  • Q1. Basic java questions
  • Add your answer
  • Q2. Managerial questions
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Willing to Relocate.
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for career growth and new experiences.

    • I have relocated in the past for internships or job opportunities.

    • I understand the importance of being flexible and adaptable in the engineering field.

  • Answered by AI
    Add your answer
  • Q2. About company
  • Add your answer
Anonymous
More about working at LTIMindtree
golden leaf award AmbitionBox awards

Top Rated Mega Company - 2025

golden leaf award
golden leaf award AmbitionBox awards

Top Rated Company for Women - 2025

golden leaf award
golden leaf award AmbitionBox awards

Top Rated IT/ITES Company - 2025

golden leaf award
  • IT Services & Consulting
  • 50k-1 Lakh Employees (India)
  • Public

LTIMindtree Interview FAQs

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

Some of the top questions asked at the LTIMindtree Graduate Engineer interview -

  1. What are some real-life examples that illustrate the concepts of Object-Oriente...read more
  2. What is the Difference between C & C...read more
  3. What is the code to generate the first 12 prime numbe...read more
How long is the LTIMindtree Graduate Engineer interview process?

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

Tell us how to improve this page.

LTIMindtree Interviews By Designations

  • LTIMindtree Software Engineer Interview Questions
  • LTIMindtree Senior Software Engineer Interview Questions
  • LTIMindtree Software Developer Interview Questions
  • LTIMindtree Senior Specialist Interview Questions
  • LTIMindtree Graduate Engineer Trainee (Get) Interview Questions
  • LTIMindtree Module Lead Interview Questions
  • LTIMindtree Graduate Engineer Interview Questions
  • LTIMindtree Graduate Trainee Interview Questions
  • Show more
  • LTIMindtree Data Engineer Interview Questions
  • LTIMindtree Senior Data Engineer Interview Questions

Interview Questions for Popular Designations

  • Senior Engineer Interview Questions
  • Quality Engineer Interview Questions
  • Design Engineer Interview Questions
  • Production Engineer Interview Questions
  • Project Engineer Interview Questions
  • Junior Engineer Interview Questions
  • Service Engineer Interview Questions
  • Site Engineer Interview Questions
  • Show more
  • Executive Engineer Interview Questions
  • Shift Engineer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 96 interview experiences

Difficulty level

Easy 35%
Moderate 63%
Hard 2%

Duration

Less than 2 weeks 18%
2-4 weeks 33%
4-6 weeks 31%
6-8 weeks 13%
More than 8 weeks 4%
View more

Graduate Engineer Interview Questions from Similar Companies

HCLTech
HCLTech Graduate Engineer Interview Questions
3.5
 • 23 Interviews
L&T Technology Services
L&T Technology Services Graduate Engineer Interview Questions
3.2
 • 3 Interviews
TCS
TCS Graduate Engineer Interview Questions
3.6
 • 2 Interviews
Tech Mahindra
Tech Mahindra Graduate Engineer Interview Questions
3.5
 • 2 Interviews
Accenture
Accenture Graduate Engineer Interview Questions
3.7
 • 1 Interview
Cognizant
Cognizant Graduate Engineer Interview Questions
3.7
 • 1 Interview
Capgemini
Capgemini Graduate Engineer Interview Questions
3.7
 • 1 Interview
Genpact
Genpact Graduate Engineer Interview Questions
3.7
 • 1 Interview
IBM
IBM Graduate Engineer Interview Questions
4.0
 • 1 Interview
HCL Group
HCL Group Graduate Engineer Interview Questions
3.6
 • 1 Interview
View all
LTIMindtree Graduate Engineer Salary
based on 44 salaries
₹3.5 L/yr - ₹5 L/yr
17% less than the average Graduate Engineer Salary in India
View more details

LTIMindtree Graduate Engineer Reviews and Ratings

based on 409 reviews

3.9/5

Rating in categories

4.4

Skill development

3.4

Work-life balance

3.7

Salary

3.5

Job security

4.0

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 409 Reviews and Ratings
LTIMindtree Salaries in India
Senior Software Engineer
22k salaries
unlock blur

₹7.4 L/yr - ₹21.7 L/yr

Software Engineer
16.3k salaries
unlock blur

₹3.9 L/yr - ₹8.8 L/yr

Technical Lead
6.4k salaries
unlock blur

₹16.4 L/yr - ₹28.5 L/yr

Module Lead
5.7k salaries
unlock blur

₹12.6 L/yr - ₹22 L/yr

Senior Engineer
4.7k salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Explore more salaries
Compare LTIMindtree with
Cognizant

Cognizant

3.7
Compare
Capgemini

Capgemini

3.7
Compare
Accenture

Accenture

3.7
Compare
TCS

TCS

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • LTIMindtree Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter