LTIMindtree interview experience Real time questions & tips from candidates to crack your interview

Frontend Developer

LTIMindtree
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Application story
I applied through the company website, and HR contacted me the next day. The first two rounds happened in quick succession. The third round was solely a salary discussion.
Preparation
Duration: 2 Months
Topics: HTML, CSS, JS, ReactJS, Redux, Typescript
Tip
Tip

Tip 1: Keep practicing coding questions.

Tip 2: Understand core JavaScript.

Application process
Where: Linkedin
Eligibility: Experience in React
Resume Tip
Resume tip

Tip 1: Work on more projects to enhance your resume.

Tip 2: Focus on adding new skills.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration30 minutes
Interview date25 Jan 2024
Coding problem2

1. Reverse Words In A String

Easy
10m average time
90% success
0/40
Asked in companies
UnacademyIBMOptum

You are given a string 'str' of length 'N'.


Your task is to reverse the original string word by word.


There can be multiple spaces between two words and there can be leading or trailing spaces but in the output reversed string you need to put a single space between two words, and your reversed string should not contain leading or trailing spaces.


Example :
If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
Try solving now

2. Count Pairs

Moderate
25m average time
65% success
0/80
Asked in companies
FacebookAmazonTwitter

You are given a cartesian plane, having ‘N’ points in the form of the array ‘PointX’ and ‘PointY’ where ‘PointX[i]’ and ‘PointY[i]’ represent the ‘X’ coordinates and ‘Y’ coordinates of the i’th point, respectively. You have to find the number of pairs satisfying the following conditions:

1. The points in the pair are distinct.
2. Euclidean distance and the Manhattan distance between the points of the pair should be equal.

Note :

1. Pair (‘P’, ‘Q’) is the same as pair (‘Q’, ‘P’).
2. Euclidean distance is given by: (( ‘X2’ - ‘X1’) ^ 2 + (‘Y2’ - ‘Y1’) ^ 2) ^ 0.5.
3. Manhattan distance is given by: |’X2’ - ‘X1’| + |’Y2’ - ‘Y1’|, where points are (‘X1’, ‘Y1’) and (‘X2’, ‘Y2’).
For example :
Let points be: (1, 2), (2, 3), (1, 3)
The Euclidean distance between points (1, 2) and (1, 3) is: 1
The Manhattan distance between points (1, 2) and (1, 3) is: 1
The Euclidean distance between points (2, 3) and (1, 3) is: 1
The Manhattan distance between points (2, 3) and (1, 3) is: 1
So the pairs can be: [(1, 2), (1, 3)] and [(2, 3), (1, 3)].
So the number of pairs is 2.
Try solving now
02
Round
Medium
Online Coding Interview
Duration30 minutes
Interview date1 Feb 2024
Coding problem2

1. Remove Duplicates from Sorted Array

Easy
15m average time
85% success
0/40
Asked in companies
UnacademyAmerican ExpressGoldman Sachs

Remove duplicates in a given array without inbuilt methods

Try solving now

2. Create a Timer

Create a timer displaying 10-1 and a Happy New Year wish.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
Software Engineer
3 rounds | 3 problems
Interviewed by LTIMindtree
0 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 3 problems
Interviewed by LTIMindtree
2590 views
1 comments
0 upvotes
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Frontend Developer
3 rounds | 11 problems
Interviewed by Amdocs
2480 views
0 comments
0 upvotes