i
LTIMindtree
Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards
Filter interviews by
A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.
A prime number has exactly two distinct positive divisors: 1 and itself. Example: 2, 3, 5, 7.
The number 1 is not prime because it has only one divisor.
The first few prime numbers are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.
Even numbers greater than 2 are not prime since they are divisible by 2. Example: 4...
My resume highlights my academic achievements, internships, and skills relevant to the Graduate Trainee position.
Completed a Bachelor's degree in Business Administration with a focus on Marketing.
Interned at XYZ Corporation, where I assisted in developing marketing strategies that increased engagement by 30%.
Participated in a leadership program that enhanced my project management and teamwork skills.
Volunteered fo...
Clearing the Technical Round (TR) is essential for progressing to the HR interview stage in the recruitment process.
TR assesses technical skills relevant to the job role, such as coding for software positions.
Example: A candidate might solve a coding problem to demonstrate their programming abilities.
HR interview focuses on soft skills, cultural fit, and overall personality.
Example: Candidates may discuss their te...
A pointer to a pointer is a variable that stores the address of another pointer, allowing for multi-level indirection.
1. Definition: A pointer to a pointer (e.g., int **ptr) holds the address of another pointer (e.g., int *p).
2. Usage: Useful in dynamic memory allocation and when passing pointers to functions.
3. Example: int x = 10; int *p = &x; int **ptr = &p; // ptr points to p, which points to x.
4. Memo...
What people are saying about LTIMindtree
I am open to relocating for the right opportunity, as it can enhance my career and personal growth.
Relocation can provide exposure to new cultures and experiences, enriching my personal life.
I believe that working in different locations can broaden my professional network.
For example, moving to a city with a strong industry presence can lead to better career opportunities.
I am adaptable and willing to embrace chan...
Cut the cake into 8 pieces by making 3 slices, creating 8 equal-sized slices.
Make two vertical cuts to divide the cake into 4 equal quarters.
Then make one horizontal cut through the middle of the cake to create 8 equal-sized slices.
Each slice will be a triangular piece of cake.
LtiMindtree is a global technology consulting and services company.
Provides IT consulting, digital transformation, and technology services
Offers solutions in areas such as cloud computing, data analytics, and artificial intelligence
Works with clients across various industries including banking, healthcare, and retail
Write a code to check if a number is divisible by 2.
Use the modulo operator (%) to check if the remainder is 0 when divided by 2.
If the remainder is 0, then the number is divisible by 2.
Example: if(num % 2 == 0) { // divisible by 2 }
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 fle...
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).
Basic core computer concepts and technology related questions
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...
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[...
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).
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
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
It involves the question of SQL, programming.
OOP is used for organizing code into reusable objects, promoting code reusability, modularity, and easier maintenance.
Encapsulation: Data and methods are bundled together in objects, promoting data security and code organization.
Inheritance: Allows for the creation of new classes based on existing ones, promoting code reuse and reducing redundancy.
Polymorphism: Objects can be treated as instances of their parent class,...
Multiple inheritance is a feature in object-oriented programming where a class can inherit attributes and methods from more than one parent class.
Allows a class to inherit attributes and methods from multiple parent classes
Can lead to the diamond problem where ambiguity arises if two parent classes have a method with the same name
Languages like C++ support multiple inheritance
Polymorphism is the ability of a single function or method to operate on different types of data.
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 object-oriented programming languages like Java allows for polymorphism.
Example: A method 'draw()' ca...
There are & sections
A pointer to a pointer is a variable that stores the address of another pointer, allowing for multi-level indirection.
1. Definition: A pointer to a pointer (e.g., int **ptr) holds the address of another pointer (e.g., int *p).
2. Usage: Useful in dynamic memory allocation and when passing pointers to functions.
3. Example: int x = 10; int *p = &x; int **ptr = &p; // ptr points to p, which points to x.
4. Memory: I...
I am a motivated graduate with a passion for learning and a strong foundation in my field, eager to contribute and grow in a dynamic environment.
Educational Background: Graduated with a degree in Business Administration, focusing on marketing strategies.
Internship Experience: Completed a summer internship at XYZ Corp, where I assisted in developing a social media campaign that increased engagement by 30%.
Skills: Profic...
I am open to relocating for the right opportunity, as it can enhance my career and personal growth.
Relocation can provide exposure to new cultures and experiences, enriching my personal life.
I believe that working in different locations can broaden my professional network.
For example, moving to a city with a strong industry presence can lead to better career opportunities.
I am adaptable and willing to embrace change, w...
I didn't remember the questions.
I didn't remember the questions.
A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.
A prime number has exactly two distinct positive divisors: 1 and itself. Example: 2, 3, 5, 7.
The number 1 is not prime because it has only one divisor.
The first few prime numbers are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29.
Even numbers greater than 2 are not prime since they are divisible by 2. Example: 4, 6, ...
I applied via Campus Placement
Basics of numerical and logical reasoning
I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.
Easy to crack easy level
Easy to crack ALL process was easy
My resume highlights my academic achievements, internships, and skills relevant to the Graduate Trainee position.
Completed a Bachelor's degree in Business Administration with a focus on Marketing.
Interned at XYZ Corporation, where I assisted in developing marketing strategies that increased engagement by 30%.
Participated in a leadership program that enhanced my project management and teamwork skills.
Volunteered for a n...
I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.
Clearing the Technical Round (TR) is essential for progressing to the HR interview stage in the recruitment process.
TR assesses technical skills relevant to the job role, such as coding for software positions.
Example: A candidate might solve a coding problem to demonstrate their programming abilities.
HR interview focuses on soft skills, cultural fit, and overall personality.
Example: Candidates may discuss their teamwor...
I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.
Multiple analytical questions and 3 easy coding questions
Write a code to check if a number is divisible by 2.
Use the modulo operator (%) to check if the remainder is 0 when divided by 2.
If the remainder is 0, then the number is divisible by 2.
Example: if(num % 2 == 0) { // divisible by 2 }
Cut the cake into 8 pieces by making 3 slices, creating 8 equal-sized slices.
Make two vertical cuts to divide the cake into 4 equal quarters.
Then make one horizontal cut through the middle of the cake to create 8 equal-sized slices.
Each slice will be a triangular piece of cake.
LtiMindtree is a global technology consulting and services company.
Provides IT consulting, digital transformation, and technology services
Offers solutions in areas such as cloud computing, data analytics, and artificial intelligence
Works with clients across various industries including banking, healthcare, and retail
I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.
Time and Distance,Ratio and Proportion
I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.
Basic aptitude questions
Basic coding questions were asked
The duration of LTIMindtree Graduate Trainee interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 14 interview experiences
Difficulty level
Duration
based on 180 reviews
Rating in categories
Senior Software Engineer
22k
salaries
| ₹7.4 L/yr - ₹21.6 L/yr |
Software Engineer
16.3k
salaries
| ₹3.9 L/yr - ₹8.8 L/yr |
Technical Lead
6.4k
salaries
| ₹16.4 L/yr - ₹28.3 L/yr |
Module Lead
5.7k
salaries
| ₹12 L/yr - ₹22 L/yr |
Senior Engineer
4.4k
salaries
| ₹5.8 L/yr - ₹14 L/yr |
Cognizant
Capgemini
Accenture
TCS