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 Interview Questions and Answers for Freshers

Updated 13 Jul 2025
Popular Designations

259 Interview questions

A Graduate Engineer Trainee (Get) was asked
Q. Write a database query to find the maximum marks from the student table.
Ans. 

To find the maximum marks from a student table, use SQL's MAX() function to retrieve the highest score.

  • Use the SQL query: SELECT MAX(marks) FROM student;

  • Ensure 'marks' is the correct column name for student scores.

  • This query returns the highest marks from all records in the student table.

  • You can also use ORDER BY and LIMIT to find the top scorer: SELECT marks FROM student ORDER BY marks DESC LIMIT 1;

View all Graduate Engineer Trainee (Get) interview questions
A Cloud Engineer was asked 4mo ago
Q. There was two coding Fibonacci series Second largest
Ans. 

The candidate is asked to write code for generating Fibonacci series and finding the second largest number in an array.

  • For Fibonacci series, start with 0 and 1, then add the previous two numbers to get the next number in the series.

  • To find the second largest number in an array, sort the array in descending order and return the element at index 1.

View all Cloud Engineer interview questions
An Associate Trainee was asked 6mo ago
Q. What is HTML, and what purposes does it serve?
Ans. 

HTML is a markup language used for creating and structuring web pages.

  • HTML stands for HyperText Markup Language.

  • It is used to create the structure and content of web pages.

  • HTML uses tags to define elements such as headings, paragraphs, images, links, and more.

  • Example: <h1>This is a heading</h1>

  • Example: <p>This is a paragraph</p>

  • HTML documents are saved with a .html file extension.

View all Associate Trainee interview questions
A Graduate Engineer Trainee (Get) was asked 6mo ago
Q. Explain oops concepts Difference between list and tuple
Ans. 

OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction. List is mutable while tuple is immutable.

  • OOPs concepts: inheritance, polymorphism, encapsulation, abstraction

  • List: mutable, can be modified after creation (e.g. [1, 2, 3])

  • Tuple: immutable, cannot be modified after creation (e.g. (1, 2, 3))

View all Graduate Engineer Trainee (Get) interview questions

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.
A Graduate Engineer was asked 6mo ago
Q. What is dsa, explain knapsack
Ans. 

DSA stands for Data Structures and Algorithms. Knapsack is a problem in combinatorial optimization.

  • DSA is a field of study that involves the design and analysis of data structures and algorithms.

  • Knapsack problem involves maximizing the value of items in a knapsack without exceeding its capacity.

  • There are two types of knapsack problems: 0/1 knapsack (where items cannot be broken) and fractional knapsack (where item...

View all Graduate Engineer interview questions
A Data Engineer was asked 8mo ago
Q. Calculate second highest salary using SQL as well as pyspark.
Ans. 

Calculate second highest salary using SQL and pyspark

  • Use SQL query with ORDER BY and LIMIT to get the second highest salary

  • In pyspark, use orderBy() and take() functions to achieve the same result

View all Data Engineer interview questions
A Test Analyst was asked 8mo ago
Q. Reverse a String
Ans. 

Reverse a given string

  • Create a character array from the input string

  • Use two pointers to swap characters from start and end of the array

  • Continue swapping until the pointers meet in the middle

View all Test Analyst interview questions
Are these interview questions helpful?
A React Js Frontend Developer was asked 10mo ago
Q. What is closuer? is normal function call as closuer or not
Ans. 

A closure is a function that has access to its own scope, as well as the scope in which it was defined.

  • A closure allows a function to access variables from its outer function even after the outer function has finished executing.

  • Closures are created whenever a function is defined within another function.

  • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(ou...

View all React Js Frontend Developer interview questions
A Senior Software Engineer was asked 11mo ago
Q. What is thread and how can create thread
Ans. 

A thread is a lightweight process that can run concurrently with other threads within the same process.

  • Threads allow for parallel execution of tasks within a single process.

  • Threads share the same memory space and resources of the process that created them.

  • Threads can be created in programming languages like Java, C++, and Python using built-in libraries or frameworks.

  • For example, in Java, you can create a thread b...

View all Senior Software Engineer interview questions
A Power BI Developer was asked
Q. What is data query and data flow?
Ans. 

Data query is the process of retrieving specific data from a database, while data flow is the movement of data from one point to another.

  • Data query involves writing SQL queries to extract specific data from a database

  • Data flow refers to the movement of data from source to destination through various transformations

  • Data query is used to filter and retrieve relevant data, while data flow ensures data is processed an...

View all Power BI Developer interview questions

LTIMindtree Interview Experiences for Freshers

302 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. OOPs Concepts AI Questions React Questions SQL Queries I had a terrible experience. Initially, I was shortlisted for the technical interview, which went well and lasted about 27 minutes. However, I didn’t ...
  • Q2. Resume based questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. How do you optimize SQL queries?
  • Ans. 

    Optimizing SQL queries involves using indexes, avoiding unnecessary joins, and optimizing the query structure.

    • Use indexes on columns frequently used in WHERE clauses

    • Avoid using SELECT * and only retrieve necessary columns

    • Optimize joins by using INNER JOIN instead of OUTER JOIN when possible

    • Use EXPLAIN to analyze query performance and make necessary adjustments

  • Answered by AI
  • Q2. How do you do performance optimization in Spark. Tell how you did it in you project.
  • Ans. 

    Performance optimization in Spark involves tuning configurations, optimizing code, and utilizing caching.

    • Tune Spark configurations such as executor memory, number of executors, and shuffle partitions.

    • Optimize code by reducing unnecessary shuffles, using efficient transformations, and avoiding unnecessary data movements.

    • Utilize caching to store intermediate results in memory and avoid recomputation.

    • Example: In my projec...

  • Answered by AI
  • Q3. What is SparkContext and SparkSession?
  • Ans. 

    SparkContext is the main entry point for Spark functionality, while SparkSession is the entry point for Spark SQL.

    • SparkContext is the entry point for low-level API functionality in Spark.

    • SparkSession is the entry point for Spark SQL functionality.

    • SparkContext is used to create RDDs (Resilient Distributed Datasets) in Spark.

    • SparkSession provides a unified entry point for reading data from various sources and performing ...

  • Answered by AI
  • Q4. When a spark job is submitted, what happens at backend. Explain the flow.
  • Ans. 

    When a spark job is submitted, various steps are executed at the backend to process the job.

    • The job is submitted to the Spark driver program.

    • The driver program communicates with the cluster manager to request resources.

    • The cluster manager allocates resources (CPU, memory) to the job.

    • The driver program creates DAG (Directed Acyclic Graph) of the job stages and tasks.

    • Tasks are then scheduled and executed on worker nodes ...

  • Answered by AI
  • Q5. Calculate second highest salary using SQL as well as pyspark.
  • Ans. 

    Calculate second highest salary using SQL and pyspark

    • Use SQL query with ORDER BY and LIMIT to get the second highest salary

    • In pyspark, use orderBy() and take() functions to achieve the same result

  • Answered by AI
  • Q6. 2 types of modes for Spark architecture ?
  • Ans. 

    The two types of modes for Spark architecture are standalone mode and cluster mode.

    • Standalone mode: Spark runs on a single machine with a single JVM and is suitable for development and testing.

    • Cluster mode: Spark runs on a cluster of machines managed by a cluster manager like YARN or Mesos for production workloads.

  • Answered by AI
  • Q7. If you want very less latency - which is better standalone or client mode?
  • Ans. 

    Client mode is better for very less latency due to direct communication with the cluster.

    • Client mode allows direct communication with the cluster, reducing latency.

    • Standalone mode requires an additional layer of communication, increasing latency.

    • Client mode is preferred for real-time applications where low latency is crucial.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based. Write SQL and pyspark code for a dataset.
  • Ans. 

    SQL and PySpark code examples for data manipulation and analysis.

    • Use SQL for structured queries: SELECT, JOIN, GROUP BY.

    • Example SQL: SELECT name, COUNT(*) FROM patients GROUP BY name;

    • Use PySpark for big data processing: DataFrame API, RDDs.

    • Example PySpark: df.groupBy('name').count().show();

    • Optimize queries with indexing in SQL and caching in PySpark.

  • Answered by AI
  • Q2. If you have to find latest record based on latest timestamp in a table for a particular customer(table is having history) , how will you do it. Self join and nested query will be expensive. Optimized query...

Interview Preparation Tips

Topics to prepare for LTIMindtree Data Engineer interview:
  • SQL
  • pyspark
  • ETL
Interview preparation tips for other job seekers - L2 was scheduled next day to L1 so the process is fast. Brush up your practical knowledge more.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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

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

Round 1 - Aptitude Test 

The aptitude test was successful, covering various topics such as ratios and proportions, percentages, blood relations, boat and stream problems, highest common factor (HCF) and least common multiple (LCM), volume and surface area, time and work, as well as questions related to profit and loss, and speed, distance, and time.

Round 2 - Coding Test 

In the coding test 1 question for coding and another 2 for debugging were asked.

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. What do you mean by polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in OOP allows a child class to override a method from its parent class, exhibiting polymo...

  • Answered by AI
  • Q3. A puzzle was asked. Probably do all the puzzles from geeks for geeks.

Interview Preparation Tips

Interview preparation tips for other job seekers - For interviews do the basic computer concepts. Do practice projects as project related questions might be asked. Oops concepts, sql, Dbms, OS, Cn.

Associate Consultant Interview Questions & Answers

user image Mounika Sanapala

posted on 21 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Percentage and averages, number and alphabet series, compound interest (CI) and simple interest (SI).

Round 2 - Coding Test 

Basic programs include: 1. A program to perform the addition of two numbers, 2. A program to print a star pattern, and 3. A program to generate a triangle output, among others.

Round 3 - HR 

(4 Questions)

  • Q1. What challenges did we face?
  • Ans. 

    We faced challenges related to communication, resource allocation, and project timelines.

    • Communication breakdown between team members

    • Limited resources available for the project

    • Struggling to meet project deadlines

  • Answered by AI
  • Q2. Where do you see yourself in the next five years?
  • Ans. 

    In five years, I see myself as a senior consultant leading projects and mentoring junior team members.

    • Advancing to a senior consultant role

    • Leading projects and teams

    • Mentoring junior team members

    • Continuing professional development through training and certifications

  • Answered by AI
  • Q3. What strategies can be employed to overcome failures?
  • Ans. 

    Strategies to overcome failures include learning from mistakes, staying positive, seeking feedback, and setting new goals.

    • Learn from mistakes by analyzing what went wrong and how to improve

    • Stay positive and maintain a growth mindset to bounce back from setbacks

    • Seek feedback from mentors or colleagues to gain different perspectives

    • Set new goals and create a plan to move forward with renewed motivation

  • Answered by AI
  • Q4. Are you able to work effectively under pressure?
  • Ans. 

    Yes, I thrive under pressure and can effectively manage my time and priorities to meet deadlines.

    • I have experience working in fast-paced environments where quick decision-making and adaptability are key.

    • I am able to stay calm and focused under pressure, allowing me to deliver high-quality work even in challenging situations.

    • I prioritize tasks effectively to ensure that deadlines are met without compromising on quality.

    • ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Java Based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I believe this is one of the best companies for a fresher to learn new concepts and explore various opportunities.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude question.

Round 2 - Coding Test 

Basic coding question.

Round 3 - One-on-one 

(3 Questions)

  • Q1. How the skill you specified in resume
  • Ans. 

    I have strong problem-solving skills and attention to detail.

    • I have experience in root cause analysis to identify and resolve quality issues.

    • I am proficient in statistical analysis to improve processes and reduce defects.

    • I have a track record of implementing quality control measures to ensure product reliability.

    • I pay close attention to detail in all aspects of my work to maintain high quality standards.

  • Answered by AI
  • Q2. About the coding language you mention
  • Ans. 

    Quality Engineers use coding languages to automate testing, improve processes, and ensure product quality.

    • Automation: Languages like Python or Java can be used to write automated test scripts.

    • Data Analysis: R or Python can analyze test results and identify trends.

    • Integration: Coding helps integrate testing tools with CI/CD pipelines, enhancing workflow.

    • Scripting: Shell scripting can automate repetitive tasks in the tes...

  • Answered by AI
  • Q3. Asking to slove coding question
Round 4 - HR 

(2 Questions)

  • Q1. General basic question
  • Q2. Scenario based question

Graduate Trainee Interview Questions & Answers

user image Nashrat Jahan

posted on 20 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic core computer concepts and technology related questions

Round 2 - Technical 

(4 Questions)

  • Q1. Oops, arraylists
  • Q2. Tell me about abstraction and interfaces
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary features. Interfaces define a contract for classes to implement.

    • Abstraction allows us to focus on what an object does rather than how it does it

    • Interfaces define a set of methods that a class must implement, without specifying how they are implemented

    • Abstraction and interfaces help in achieving loose coupling and flexibil...

  • Answered by AI
  • Q3. Array lists vs arrays
  • Ans. 

    Array lists are dynamic in size, while arrays have fixed sizes.

    • Array lists can grow or shrink in size dynamically, while arrays have a fixed size.

    • Array lists are implemented using dynamic arrays, while arrays are static data structures.

    • Array lists provide methods for adding, removing, and accessing elements easily, while arrays require manual resizing and shifting of elements.

    • Example: ArrayList<String> vs String[...

  • Answered by AI
  • Q4. Pattern printibg questionto print a triangle
  • Ans. 

    This question involves printing a triangle pattern using loops in programming.

    • Use nested loops: Outer loop for rows, inner loop for columns.

    • For a right-angled triangle, print '*' for each column in the row.

    • Example for 5 rows: 1st row: * 2nd row: ** 3rd row: *** 4th row: **** 5th row: *****

    • Adjust spaces for different triangle types (e.g., centered triangle).

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Flexible with moving
  • Ans. 

    I am open to relocating for the right opportunity.

    • I am willing to move to different locations for career growth

    • I understand the importance of being flexible with relocation for job opportunities

    • I have experience moving for previous job opportunities, such as relocating for internships or projects

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

The first round of the interview consisted of a 100-question aptitude test.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical Questions regarding to technologies added in your resume.
  • Q2. Questions from your technical iin your resume
  • Ans. 

    Discussing technical skills and experiences listed in my resume for the Associate Trainee position.

    • Proficient in programming languages like Python and Java, used for developing applications.

    • Experience with data analysis tools such as Excel and SQL for data management.

    • Familiar with software development methodologies like Agile, enhancing team collaboration.

    • Worked on a project involving machine learning algorithms to pre...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. HR Questions you can find it on Google itself.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

There were verbal, non verbal, reasoning , English and maths questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your project.
  • Ans. 

    I worked on a project analyzing customer behavior using machine learning algorithms.

    • Used Python for data preprocessing and analysis

    • Implemented machine learning models such as decision trees and logistic regression

    • Performed feature engineering to improve model performance

  • Answered by AI
  • Q2. What programming knowledge you have ?
  • Ans. 

    Proficient in Python, R, and SQL with experience in data manipulation, visualization, and machine learning algorithms.

    • Proficient in Python for data analysis and machine learning tasks

    • Experience with R for statistical analysis and visualization

    • Knowledge of SQL for querying databases and extracting data

    • Familiarity with libraries such as Pandas, NumPy, Matplotlib, and Scikit-learn

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Where do you stay ?
  • Ans. 

    I currently stay in an apartment in downtown area.

    • I stay in an apartment in downtown area

    • My current residence is in a city

    • I live close to my workplace

  • Answered by AI
  • Q2. Tell me about you
  • Ans. 

    I am a data science enthusiast with a strong background in statistics and machine learning.

    • Background in statistics and machine learning

    • Passionate about data science

    • Experience with data analysis tools like Python and R

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Remove duplicates in a array
  • Ans. 

    Remove duplicates from an array of strings by using a set or filtering methods to ensure unique values.

    • Use a set to automatically handle duplicates: `uniqueArray = list(set(array))`.

    • Filter the array while checking for existence: `uniqueArray = []` and loop through `array`.

    • Example: For `array = ['apple', 'banana', 'apple']`, the result will be `['apple', 'banana']`.

    • Using list comprehension: `uniqueArray = []` + `[x for ...

  • Answered by AI
  • Q2. Capitalise first letter of every word
  • Ans. 

    To capitalize the first letter of every word in a string, iterate through the string and modify each word accordingly.

    • Use a programming language like Python: ' '.join(word.capitalize() for word in text.split())

    • In JavaScript, you can use: text.split(' ').map(word => word.charAt(0).toUpperCase() + word.slice(1)).join(' ')

    • Consider edge cases like punctuation: 'hello, world!' becomes 'Hello, World!'

    • Handle empty strings ...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate engineering graduate with a strong foundation in mechanical systems and a keen interest in innovative solutions.

    • Educational Background: Graduated with a Bachelor's degree in Mechanical Engineering from XYZ University.

    • Internship Experience: Completed a summer internship at ABC Corp, where I worked on optimizing manufacturing processes.

    • Technical Skills: Proficient in CAD software like AutoCAD and SolidW...

  • Answered by AI
  • Q2. Describe yourself in 3 words
  • Ans. 

    I am curious, dedicated, and adaptable, always eager to learn and grow in my engineering journey.

    • Curious: I love exploring new technologies and concepts, like learning about AI and its applications in engineering.

    • Dedicated: I consistently put in extra effort to meet project deadlines, ensuring quality work and team success.

    • Adaptable: I thrive in dynamic environments, quickly adjusting to new challenges, such as switchi...

  • Answered by AI

Skills evaluated in this interview

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?
  • 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
  • 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
  • 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
  • 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
  • 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
  • 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
Round 3 - HR 

(1 Question)

  • Q1. Basic questions

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.

LTIMindtree Interview FAQs

How many rounds are there in LTIMindtree interview for freshers?
LTIMindtree interview process for freshers usually has 2-3 rounds. The most common rounds in the LTIMindtree interview process for freshers are Technical, Aptitude Test and HR.
How to prepare for LTIMindtree interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at LTIMindtree. The most common topics and skills that interviewers at LTIMindtree expect are Excel, Background Verification, Communication Skills, Data Validation and Domestic Staffing.
What are the top questions asked in LTIMindtree interview for freshers?

Some of the top questions asked at the LTIMindtree interview for freshers -

  1. When a spark job is submitted, what happens at backend. Explain the fl...read more
  2. If you want very less latency - which is better standalone or client mo...read more
  3. How can a circuler cake can be cut into 8 equal pieces with 3 cuts on...read more
What are the most common questions asked in LTIMindtree HR round for freshers?

The most common HR questions asked in LTIMindtree interview are for freshers -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Tell me about yourse...read more
How long is the LTIMindtree interview process?

The duration of LTIMindtree interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 214 interview experiences

Difficulty level

Easy 25%
Moderate 69%
Hard 6%

Duration

Less than 2 weeks 51%
2-4 weeks 26%
4-6 weeks 14%
6-8 weeks 3%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
View all

LTIMindtree Reviews and Ratings

based on 22.9k reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.3

Salary

3.6

Job security

3.6

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 22.9k Reviews and Ratings
SRE Devops

Hyderabad / Secunderabad,

Pune

+1

5-8 Yrs

Not Disclosed

Network Operation lead

Hyderabad / Secunderabad,

Chennai

+1

5-7 Yrs

₹ 11-15 LPA

Explore more jobs
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

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.7
Compare

TCS

3.6
Compare
write
Share an Interview