MindTree Interview Experience 2021 | Tr And Hr Round Question | Experience 3
Company - MINDTREE
Date - 28 MAY 2021
Branch - IT
Duration - 35-40 MINS
Technical Round
Q1. Introduce yourself.
Sample Answer:
Tips: talk about your confident part in a very humble way.Introduction part can take up around 2-3 mins.
Q2. Consider a train in front of you, you don't know how it is going to move. how will you decide the direction of the train?
Sample Answer:
we can see the engine of the train,the engine of the train can tell the direction of the train.
Q3. Consider Covid Vaccination.The government has allowed only people from age between 40 to 60 for vaccination.Write a logic to allow only people of this age to select vaccination.
int age;
cin>>age;
if(age>= 40 and age <= 60)
{ cout<<"yes";}
else
{ cout<<"no";}
Q4. Given a 2D array
Q5. Explain about your project.
1.Project Introduction
Give an introduction of your project, what problem you tried to solve with your project.
2.Modules Description:
Divide your project in various modules and describe modules to the interviewer.
3.Advantages and main functionality of your project
describe your main functionality of the project and main problem you want to solve.
4.Tools,Technologies and platform used
This is also a very important aspect when explaining a project. Tools, Technologies, and platforms used will help the interviewer understand better about the working of the project. As well as it will create an impact on how new is your project. Try to explain it very short and be to the point.
5.Personal Contribution in the project
Interviewer is interested to know what have you done in the project and what part you have worked on.
Q6.Which programming languages are you proficient in?
As an engineering student, it is likely that you have worked on many programming languages, Please refer about the language you have worked on the most and you are confident in both coding as well as theoretical concepts about that language.
Sample Answer:
I have worked on languages such as Java,C++ and JavaScript. Out of these I am most confident about Java. I have worked on my major projects in Java.
Q7. What are loops?
Q8. Differentiate while and do while loop.
Q9. Explain linear and binary search ?
A binary search is a search in which the middle element is calculated to check whether it is smaller or larger than the element which is to be searched. The main advantage of using binary search is that it does not scan each element in the list. Instead of scanning each element, it performs the searching to the half of the list. So, the binary search takes less time to search an element as compared to a linear search.
Comments
Post a Comment