Tip 1 : Make sure whatever Algo you are learning , you know why the algo is used and what are different use cases.
Tip 2 : Make sure to ask questions to interviewer to gain clarity on whatever questions has been asked
Tip 3 : Be honest if you don’t know the answer to any question and tell the interviewer that you don’t know, so he has a chance to ask more questions that you can answer.
Tip 4 : Prepare a good intro about yourself and about your project, and make sure to prepare for the cross questions regarding you project.
Tip 1 : Clearly mention about tour Major Project or the last Project you worked on. You should have a detail knowledge of how your project works.
Tip 2 : Don’t mention additional unnecessary information just to fill up your resume.
There were total three sections. Each section was timed.
Section 1 : Aptitude (math &logic)
Section 2 : English
Section 3 : Coding (2 questions ).



Reverse a string without using inbuilt function
I used a for loop to traverse from the nth index of the given string and appended each character into a new string .



Consider following matrix:

The rectangle (1,1) to (3,3) is the rectangle with the maximum sum, i.e. 29.

I used two for loops, one for row and one for column.
Used one variable to store the sum after the row loop was over .
Before entering again into the row loop, checked the max sum that was previously obtained.
It was a face to face interview round, two people were taking my interview ( one was 5-7 years experience developer, other was a TL/Manager)
First, I explained about all the data structures I know.
Then one by one mentioned there use cases ( could not answer all of them )
Write a SQL query to fetch employee who live a Bangalore and have a management title.
Tip 1 : Used join to combine the two given tables
Tip 2 : Kept talking to interviewer while solving, he helped me.
It was an HR round, The HR asked to introduce me.
Tip 1 : I took a minute to gather my thoughts.
Tip 2 : I answered honestly

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?