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

Technical Lead

Mindtree
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structures, System Design, NodeJs, Javascript, ReactJs
Tip
Tip

Tip 1 : Focus on one thing at a time.
Tip 2 : Do at least 5 projects
Tip 3 : Practice the questions with interviewbit website.

Application process
Where: Naukri
Eligibility: Minimum 5 years of experience
Resume Tip
Resume tip

Tip 1 : Focus on a simple one-page resume.
Tip 2 : Mention your current project in detail

Interview rounds

01
Round
Easy
Telephonic
Duration30 mins
Interview date2 Jun 2021
Coding problem1

1. Number Of Pairs With Given Sum

Moderate
39m average time
60% success
0/80
Asked in companies
SAP LabsAmazonSamsung

You have been given an integer array/list(arr) and a number 'Sum'. Find and return the total number of pairs in the array/list which when added, results equal to the 'Sum'.

Note:
Given array/list can contain duplicate elements.

(arr[i],arr[j]) and (arr[j],arr[i]) are considered same.
Problem approach

unction twoSum(nums: number[], target: number): number[] {
const map = {}
for (let index = 0; index < nums.length; index++) {
const element = nums[index]
const complement = target - element
if (map[complement] !== undefined) {
return [map[complement], index]
} else {
map[element] = index
}
}
return []
}

Try solving now
02
Round
Easy
Video Call
Duration45 mins
Interview date3 Jun 2021
Coding problem1

1. System Design question

How is Horizontal scaling different from Vertical scaling?

03
Round
Easy
HR Round
Duration15 mins
Interview date6 Aug 2021
Coding problem1

1. Basic HR Questions

When you can join the company?

Here's your problem of the day

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

Skill covered: Programming

To make an AI less repetitive in a long paragraph, you should increase:

Choose another skill to practice
Similar interview experiences
company logo
Technical Lead
3 rounds | 3 problems
Interviewed by Mindtree
0 views
0 comments
0 upvotes
company logo
Technical Lead
2 rounds | 2 problems
Interviewed by Mindtree
1830 views
0 comments
0 upvotes
company logo
Technical Lead
3 rounds | 3 problems
Interviewed by Mindtree
1337 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by Mindtree
1590 views
0 comments
0 upvotes