Tip 1 : Practice questions in a time bound manner. Set a timer and solve the questions within that time frame only as the interview is also going to be time bound.
Tip 2 : Always revise. Mark the questions that you couldn't solve in the first go. Revise them again after a week or 2 so that the concepts become more clear.
Tip 1 : Do at least 1 development project and mention clearly how you contributed in that.
Tip 2 : Only mention those skills in which you are confident. If you are at basic level for some skill, mention it accordingly.
It was the first round. Was taken online and there were 2 invigilators from the company
Questions around queries related to JOINS, GROUP BY, ORDER BY, ACID properties
Read the fundamentals of DBMS thoroughly and practice queries specially JOINS
Questions around Classes, inheritance, polymorphism, encapsulation and abstraction.
Read book E. balagurusamy



Consider ARR = [1, 2, 3, 4, 4], the duplicate integer value present in the array is 4. Hence, the answer is 4 in this case.
A duplicate number is always present in the given array.
This is Purely a Technical Round. Interviewer asked me about my Personal and Academic Projects and asked some technical Questions.
Interviewer asked me to reverse a doubly linked list in best time complexity.




knightPosition: {3,4}
targetPosition: {2,1}

The knight can move from position (3,4) to positions (1,3), (2,2) and (4,2). Position (4,2) is selected and the ‘stepCount’ becomes 1. From position (4,2), the knight can directly jump to the position (2,1) which is the target point and ‘stepCount’ becomes 2 which is the final answer.
1. The coordinates are 1 indexed. So, the bottom left square is (1,1) and the top right square is (N, N).
2. The knight can make 8 possible moves as given in figure 1.
3. A Knight moves 2 squares in one direction and 1 square in the perpendicular direction (or vice-versa).
Asked Personality development Questions
Tell me About yourself.
Tell me about your weaknesses and strengths. etc.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?