LTIMindtree Interview Questions 2025 (On-campus)
Summary
I recently underwent an on-campus interview process with LTIMindtree, which included a technical round with coding and SQL problems, along with various conceptual questions, followed by a behavioral HR interview covering personal and situational aspects.
Full Experience
I recently had an on-campus interview opportunity with LTIMindtree. The interview process consisted of two main rounds: a Technical Interview and an HR Interview.
Technical Interview:
The technical round started with some general introductory questions about my location, family, and favorite programming languages (Python and Java), where I was asked to rate my proficiency. Then, I was given three coding questions: 'Reverse the digits of a number', a star pattern printing problem (a diamond shape), and a string manipulation problem to count word frequencies in a given string. After the coding questions, the interviewer delved into conceptual differences like 'program vs. process', 'list vs. array', and 'list vs. tuple'. They also probed into Python's immutability with tuples and file handling. Some questions touched upon Machine Learning, its differences from traditional programming, and its main use cases. Towards the end of the technical round, I was asked about my favorite subject, DBMS, and then presented with an SQL query to identify students who had left school based on two tables. The round concluded with a question about future learning and an opportunity for me to ask questions.
HR Interview:
The HR interview focused on my personal profile and career aspirations. I was asked to introduce myself without mentioning projects, explain my college choice, and talk about my hobbies. Since I mentioned watching movies, the discussion moved to my recent watch and details about it. Other common HR questions included facing challenging situations, defining myself in three words, and my flexibility regarding relocation. Finally, I was given a chance to ask any questions I had for the HR representative.
Interview Questions (4)
Reverse the digits of a given integer.
Print a star pattern in the shape of a diamond, as shown:
*****
Given a string S and a list of words arr, count the number of times each word from the list arr appears in the string S. Return a list where each element represents the frequency of the corresponding word in arr. For Example:
Input: S = "apple banana apple orange banana apple grape banana", arr = ["apple", "banana", "orange", "grape"]
Output : [3, 3, 1, 1]
There is One Table A, containing the name, class etc of 50 students in a school. Now after sometimes 5 students left the school and 10 new students joins the school. and a new Table B is created, which contains the old students and the new students, not those students who left the school. Write a query to find out the names of those 5 students who left the school.