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 26 Jun 2025
Popular Designations

251 Interview questions

A Data Engineer Consultant was asked 2mo ago
Q. What tools do you work with in the Power BI service?
Ans. 

Power BI service offers tools for data visualization, collaboration, and sharing insights through interactive dashboards and reports.

  • Data Connectivity: Power BI connects to various data sources like SQL Server, Excel, and cloud services such as Azure and Salesforce.

  • Data Modeling: Users can create relationships between different data tables, enabling complex data models for in-depth analysis.

  • Interactive Dashboards:...

View all Data Engineer Consultant interview questions
A Data Engineer Consultant was asked 2mo ago
Q. What is Power BI Desktop and Gateway, and how do they function?
Ans. 

Power BI Desktop is a data visualization tool, while Gateway facilitates data connectivity for reports and dashboards.

  • Power BI Desktop is used for creating reports and dashboards from various data sources.

  • It allows users to transform and model data using Power Query and DAX.

  • Power BI Gateway acts as a bridge between on-premises data sources and Power BI services in the cloud.

  • For example, a company can use Gateway t...

View all Data Engineer Consultant interview questions
A Specialist Quality Engineering was asked 2mo ago
Q. What are the current trends in the industry?
Ans. 

Current trends in Specialist Quality Engineering focus on automation, AI integration, and enhanced regulatory compliance.

  • Increased adoption of automation tools for testing processes, such as Selenium and TestComplete.

  • Integration of AI and machine learning for predictive analytics in quality assurance.

  • Emphasis on continuous testing and DevOps practices to improve software delivery speed.

  • Growing importance of regula...

An ETL Test Engineer was asked 3mo ago
Q. What are the differences between UNION and UNION ALL?
Ans. 

Union combines results from two queries, removing duplicates; Union All includes all results, retaining duplicates.

  • Union removes duplicate records from the result set.

  • Union All includes all records, even duplicates.

  • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2.

  • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2.

  • Union is generally slower due to duplicate removal process.

View all ETL Test Engineer interview questions

What people are saying about LTIMindtree

View All
trendylion
Verified Icon
1w
student at
Chandigarh University
Data Science dream job: Need resume advice & referrals!
Hey pros, what should I add to my resume to boost my chances of landing my first Data Science role? Guidance needed! Also, if you're hiring or know openings at: TCS | Infosys | Wipro | Cognizant | Genpact | Accenture | LTIMindtree | Fractal Analytics | Mu Sigma | Quantiphi | Tiger Analytics | EXL | ZS Associates | Deloitte | KPMG | EY | Capgemini | Publicis Sapient, a referral would be amazing! 📎 I’m attaching my resume. Feedback, suggestions, or leads would mean a lot! Thanks for your support! Let’s connect & grow in #DataScience. #DataScience #MachineLearning #DeepLearning #OpenToWork #FresherJobs #DataScienceJobs #Referral #CareerAdvice #ResumeTips #JobSearch #Hiring #AmbitionBox #LinkedInJobs
FeedCard Image
Got a question about LTIMindtree?
Ask anonymously on communities.
A Senior Software Engineer Specialist was asked 4mo ago
Q. What is your level of experience with DevOps?
Ans. 

I have extensive experience with DevOps, including implementing CI/CD pipelines, infrastructure as code, and automation tools.

  • Implemented CI/CD pipelines using Jenkins and GitLab

  • Utilized infrastructure as code tools like Terraform and Ansible

  • Automated deployment processes with tools like Docker and Kubernetes

View all Senior Software Engineer Specialist interview questions
A Cloud Engineer was asked 4mo ago
Q. What are the principles of Object-Oriented Programming (OOP) in Java?
Ans. 

Opps in Java stands for Object-Oriented Programming concepts.

  • Opps in Java refers to the principles of Object-Oriented Programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

  • It allows for creating modular, reusable, and maintainable code by organizing data and behavior into objects.

  • Example: Creating classes and objects, using inheritance to create subclasses, and implementing interfaces.

View all Cloud Engineer 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}}

View all Graduate Engineer interview questions
Are these interview questions helpful?
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...

View all Graduate Engineer interview questions
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...

View all Graduate Engineer interview questions
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...

View all Graduate Engineer interview questions

LTIMindtree Interview Experiences for Freshers

301 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 213 interview experiences

Difficulty level

Easy 25%
Moderate 70%
Hard 5%

Duration

Less than 2 weeks 52%
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.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

LTIMindtree Reviews and Ratings

based on 22.7k 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.7k Reviews and Ratings
Python Automation Tester

Pune,

Chennai

+1

5-9 Yrs

Not Disclosed

Threat Hunter

Hyderabad / Secunderabad,

Chennai

+1

5-8 Yrs

Not Disclosed

Threat Hunter Lead

Hyderabad / Secunderabad,

Chennai

+1

8-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
22k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Software Engineer
16.3k salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Technical Lead
6.4k salaries
unlock blur

₹9.5 L/yr - ₹37.5 L/yr

Module Lead
5.7k salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Senior Engineer
4.4k salaries
unlock blur

₹4.2 L/yr - ₹16.1 L/yr

Explore more salaries
Compare LTIMindtree with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Accenture

3.8
Compare

TCS

3.6
Compare
write
Share an Interview