i
LTIMindtree
Filter interviews by
I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.
The static keyword in programming is used to declare variables, methods, or classes that belong to the class itself rather than instances of the class.
Static variables are shared among all instances of a class.
Static methods can be called without creating an instance of the class.
Static classes cannot be instantiated and are used for grouping related methods and variables.
Example: public static int count = 0; // static
C is a procedural programming language while C++ is an object-oriented programming language.
C is a subset of C++.
C does not support classes and objects, while C++ does.
C++ supports function overloading and operator overloading, which C does not.
C++ has a more complex syntax compared to C.
C++ has a standard template library (STL) for data structures and algorithms, which C does not have.
I am a software developer with 5 years of experience in Java and Python.
Experienced software developer
Proficient in Java and Python
5 years of industry experience
My hobbies, such as coding personal projects and participating in hackathons, have improved my problem-solving skills and creativity, which are essential in my professional life as a software developer.
Coding personal projects has allowed me to explore new technologies and techniques that I can apply in my job.
Participating in hackathons has helped me work under pressure and collaborate effectively with team members.
En...
I applied via Campus Placement and was interviewed in Jun 2024. There were 4 interview rounds.
Easy verbal, aptitude, reasoning
Yes, I am flexible to work.
I am willing to work flexible hours if needed.
I can adapt to changing project requirements.
I am open to remote work options.
I am comfortable working in different time zones.
I can prioritize tasks effectively to meet deadlines.
What people are saying about LTIMindtree
Basic Aptitude questions like numerical, Profit loss, Speed velocity, Blood relation, etc.
That was an online English Communication Assignment.
Basic level Coding Question was there.
LTIMindtree interview questions for designations
Get interview-ready with Top LTIMindtree Interview Questions
I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.
I applied via Company Website and was interviewed before May 2022. There were 5 interview rounds.
Difficulty level of this test was moderate.
There were 4 coding questions to be solved.
Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.
Switch case is faster than if else for multiple conditions
If else is more readable for binary conditions
Sorting can be done using bubble sort, insertion sort, quick sort, etc.
Example code for bubble sort: for(i=0;i
Difference between compiler and interpreter with a coding challenge
Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution
Compiler generates an executable file while interpreter does not
Compiler is faster but debugging is harder while interpreter is slower but debugging is easier
Coding challenge: Write a program to find the sum of two numbers
I appeared for an interview before Dec 2020.
Round duration - 100 Minutes
Round difficulty - Medium
You are provided with a singly linked list and an integer K
. The objective is to make the Kth
node from the end of the linked list the starting node of the linked list.
Given a singly linked list and an integer K, rearrange the list such that the Kth node from the end becomes the starting node.
Traverse the linked list to find the length and the Kth node from the end.
Update the pointers to rearrange the list accordingly.
Handle edge cases like K being equal to 1 or the length of the list.
Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.
The first line contains an...
Check if given strings containing parentheses are balanced or not.
Use a stack to keep track of opening parentheses
Iterate through the string and push opening parentheses onto the stack
When a closing parentheses is encountered, pop from the stack and check if it matches the corresponding opening parentheses
If stack is empty at the end and all parentheses are matched, the string is balanced
Round duration - 120 Minutes
Round difficulty - Medium
You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...
Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.
Iterate through the dictionary to build a graph of character dependencies based on adjacent words.
Perform a topological sort on the graph to determine the character order.
Return the character array representing the order of characters in the alien language.
You are given an array/list CHOCOLATES
of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...
Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.
Sort the array of chocolates in ascending order.
Iterate through the array and find the minimum difference between the elements by considering 'M' elements at a time.
Return the minimum difference found as the result.
Round duration - 120 Minutes
Round difficulty - Medium
You are provided with a square matrix of non-negative integers of size 'N x N'
. The task is to rotate this matrix by 90 degrees in an anti-clockwise directi...
Rotate a square matrix by 90 degrees anti-clockwise without using extra space.
Iterate through each layer of the matrix from outer to inner layers
Swap elements in groups of 4 to rotate them in place
Handle odd-sized matrices separately by adjusting the loop boundaries
Given a binary string S
of length N
where initially all characters are '1', perform exactly M
operations, choosing from four specific operations, and determine how many dis...
Count the number of distinct final strings possible after performing a given number of operations on a binary string.
Iterate through all possible combinations of operations to determine the final string after each operation.
Use bitwise operations to efficiently flip the bits based on the chosen operation.
Keep track of distinct final strings using a set data structure.
Return the size of the set as the number of distinct
Round duration - 120 Minutes
Round difficulty - Medium
Given a list of integers of size N
, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X
is the firs...
Find the Next Greater Element for each element in a list of integers.
Iterate through the list of integers from right to left.
Use a stack to keep track of elements for which the Next Greater Element is not yet found.
Pop elements from the stack until a greater element is found or the stack is empty.
Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.
Tip 1 : Practice Medium level question.
Tip 2 : Do atleast 2 projects
Tip 3 : More Focus on your Communication skill
Tip 1 : Full Command on your resume and make short atleast 1 page with normal color and font.
Tip 2 : Have mentioned some good projects on resume.
I appeared for an interview in Sep 2020.
Round duration - 90 minutes
Round difficulty - Medium
In this round, there were 2 sections one for aptitude another for coding. The coding section consists of 2 questions and one has to attempt any one of them. And webcam will be active through all the assessment process.
You are tasked with finding the sum of squares of the first N
natural numbers for given test cases.
The first line contains an integer ...
Calculate the sum of squares of the first N natural numbers for given test cases.
Read the number of test cases 'T'
For each test case, read the value of 'N'
Calculate the sum of squares of the first 'N' natural numbers
Output the result for each test case
Round duration - 45 minutes
Round difficulty - Medium
2 questions were asked in this section out of which we have to answer anyone
You are tasked with finding the sum of squares of the first N
natural numbers for given test cases.
The first line contains an integer ...
Calculate the sum of squares of the first N natural numbers for given test cases.
Read the number of test cases 'T'
For each test case, read the value of 'N'
Calculate the sum of squares of the first 'N' natural numbers
Output the result for each test case
Round duration - 30 minutes
Round difficulty - Medium
It was a problem solving round and only one coding question was asked
Given a string STR
containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.
The input starts with a single i...
Reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.
Iterate through the characters of the string from end to start and append them to a new string to get the reversed string.
Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.
Ensure to handle special characters and numbers while reversing the string.
Consider edge cases ...
Tip 1 : First go through your own resume very well as most of the company first ask questions from one's resume. Prepare what to say if they ask you about the projects you mentioned in your resume that's why never fake your resume. Be confident with what you have
Tip 2 : Obviously if you are applying for software developer role you should have basic concepts of the programming languages you learned in your college days like C, C++, Java etc if you don't know a little too then I suggest you to learn some basics first in any particular language and then practice them in IDE. As now most of the interviews are virtual so it's good to practice writing code in IDE as they often can ask you to solve some basci questions like string reversal, check palindrome or not like that.
Tip 3 : You should have good communication skill. Good communication doesn't mean fluent english communication means interact with the receuiter in such a manner that he can understand the point you are trying to mark. Be confident, don't lie in any ways if you don't have correct answe for a question and you know that directly say NO you don't know this answer rather than replying with stupid answers and other side recruiter gets a little bit disappointed as you wasted some times of him for this kind of answer. If you know the answer instead of saying fluently try to speak the sentences with a little pause that makes recruiter understand that you really understand the topic you are talking about and that will be impressive.
Tip 1 : Don't fake your resume
Tip 2 : Try to do good projects and mention them in resume
Tip 3 : As a fresher I suggest to prepare a resume of maximum
2 pages.
Some of the top questions asked at the LTIMindtree Software Developer interview for freshers -
The duration of LTIMindtree Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 6 interviews
1 Interview rounds
based on 349 reviews
Rating in categories
Senior Software Engineer
21.5k
salaries
| ₹5 L/yr - ₹19 L/yr |
Software Engineer
16.2k
salaries
| ₹2 L/yr - ₹10 L/yr |
Technical Lead
6.4k
salaries
| ₹9.4 L/yr - ₹36 L/yr |
Module Lead
5.9k
salaries
| ₹7 L/yr - ₹25.5 L/yr |
Senior Engineer
4.4k
salaries
| ₹4.2 L/yr - ₹17 L/yr |
Cognizant
Capgemini
Accenture
TCS