Tip 1 : Practice atleast 20-30 Questions for each topic in DSA
Tip 2 : Try to make some projects which solve real world problems.
Tip 3 : Try to host your project, so that interviewer can try the project hands on.
Tip 1 : Never put anything which you don't know on your resume
Tip 2 : Keep your resume up to the point. Don't overfill it with things like your full address OR your interests. It is not required.
It was a 30 minutes MCQ round where we needed to answer 30 MCQ's. The timing for the test was around 4 p.m
MCQ's were mostly from Data Structures, DBMS, OS, OOPS, Aptitude and I suppose if someone has basic understanding of these topics will be able to answer most of the MCQ's, the only constraint would be 30 minutes.
It was a Coding round with 2 programming questions which need to solved in 60 minutes in any of the languages (C/C++/Java/Python)
Given maze: {[0, 0, 1], [1, 0, 0], [1, 0, 0]}
Starting point: [2, 2]
Destination: [0, 0]
For the above example maze will look like this:
So, we can see there are 2 ways for Ninja to reach destination(D), from the starting point(SP). They are: [left -> up -> left] and [up -> left -> up -> left].
So, you need to print true.
Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
It was in the morning at around 10 a.m conducted on Skype.
Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
A HR Round in which the interviewer discussed about me and some things about my resume (Achievements, Projects etc.)
Tell me about yourself.
Are you willing to relocate?
What are you most proud of?
What has been your greatest failure?
Tip 1 : Just tell them about your city, your family, education and all
Tip 2 : Don't wrap up the question in a few words. Tell them about yourself in detail
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is a constructor in Java?