Placement Papers - MindTree

MindTree
MindTree Interview Experience - Udupi, 26 November 2016
Posted by :
Amrusha HM
(102)
There were 2 rounds.
1) Aptitude test (by Amcat).
2) Programming test (also by Amcat).

Aptitude test had 3 sessions:

1) Quantitative: Aptitude round is pretty simple. Basics of probability, permutation and combination, time and work, time speed and distance, numbers, percentage, trains (pretty much everything from RS Aggarwal). And surprisingly I got a lot of questions from logarithms (around 4-5). Just basic formulas and tricks are enough to crack it.

2) Logical reasoning: Very easy. Lot of series and blood relation questions.

3) English: Synonyms, antonyms, grammar checking.

Programming test had 2 coding questions. (60 minutes)

1) Pattern
for n=5
1
3*2
4*5*6
10*9*8*7
11*12*13*14*15

My friends got similar ones,
1
2*3
4*5*6

for n=4,s=3
3
44
555
6666
6666
555
44
3

2) Arrays and pointers:
Merge sort using array pointer.
->Do not click on submit button till you\'ve finished both questions.
->You\'ll be given with a user defined function, with parameters and return values given. You need to fill the function.