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

Software Engineer

Mindtree
upvote
share-icon
4 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 6 Months
Topics: DS Algo, Array, String, Linked List, oops, Basic of C++, Problem solving, Aptitude, and project (in development)
Tip
Tip

Tip 1 : Atleast 3 project like from frontend development or any ml or data science relevent project, as well as hard work and smart work is required. Be continue with positive consistancy
Tip 2 : Do atleast 2 projects

Application process
Where: Campus
Eligibility: atleast 6 CGPA or 60%
Resume Tip
Resume tip

Tip 1 : Resume should be professional mention those point that you are able to give the answer related to your resume which you have montioned.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 Minutes
Interview date5 Feb 2021
Coding problem1

3 Coding question, 15 Aptitude(mcq), Reasoning and English(mcq)

1. Count Consonants In A String

Problem approach

#include 

using namespace std;

int vowelCount(char *sptr)
{
// Create a counter
int count = 0;

// Iterate the loop until null character encounter
while ((*sptr) != '\0') {

// Check whether character pointer finds any vowels
if (*sptr == 'a' || *sptr == 'e' || *sptr == 'i'
|| *sptr == 'o' || *sptr == 'u') {

// If vowel found increment the count
count++;
}

// Increment the pointer to next location
// of address
sptr++;
}

return count;
}


int main()
{

char str[] = "mindtree";


cout << "Vowels in above string: " << vowelCount(str);

return 0;
}

02
Round
Easy
Assignment
Duration60 Minutes
Interview date8 Feb 2021
Coding problem0

English grammar tense, parts of speech , listening and writing, correct the wrong sentences, comprehensive paragraph, listening and speaking

03
Round
Medium
Coding Test - Pen and paper
Duration30 Minutes
Interview date12 Feb 2021
Coding problem2

They asked me some programming question I have to write only logic. Questions were from array, string and oops

 

1. Find Pattern in String - KMP Algorithm

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

We have to compare two strings.

Problem approach

1) In first question map the length of string later on compare to each other using if else
2) in the loop use i = i + 2 and swap it this logic become fine

Try solving now

2. Interesting Alphabets

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

As a part of its competition, the school will conduct a codeathon, Lock the Code, where it has been given a value, and the participants have to decode it.

The participants are given a value denoting the number of rows in the matrix; they need to print the pattern.

Example : 

For N=5, Pattern:
E
DE
CDE
BCDE
ABCDE 

Among the participants, Ninja is new to programming and doesn’t have much experience; he asks you to solve the problem. Can you help solve this problem?

Try solving now
04
Round
Easy
HR Round
Duration20 Minutes
Interview date12 Feb 2021
Coding problem0

1) Tell me about yourself
2) Why are you having gap after graduation (at least 7 to 8 month).
3) What was certification you have done
4) What was your role in your capstone project during your college semester
5) What do you know about the company (mindtree)

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
Software Engineer
3 rounds | 7 problems
Interviewed by Mindtree
964 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 3 problems
Interviewed by Mindtree
1163 views
0 comments
0 upvotes
company logo
Software Engineer
4 rounds | 2 problems
Interviewed by Mindtree
1528 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 4 problems
Interviewed by Mindtree
985 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7857 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
9947 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4282 views
1 comments
0 upvotes