Tip 1: Prepare DSA well, and I recommend Coding Ninjas for interview preparation.
Tip 2: Be confident & relaxed during the interview.
Tip 3: Revise your projects, i.e., how they work and their functionalities.
Tip 1 : Make your resume short and try to make it one page only and mention all the skills that you are confident in.
Tip 2 : Do not put false things on your resume.
The interviewer asked two coding questions, which I was able to solve, and also asked some DBMS queries.





You only need to return the starting node for minimum and maximum slope. So if slope(P1, P2) is maximum, just return P1.
In case of more than one possible solution return the first occurring solution.
In the technical interview, the interviewer asked questions about Java, the project, DBMS, one puzzle problem, and one coding question.



A pair ('ARR[i]', 'ARR[j]') is said to be an inversion when:
1. 'ARR[i] > 'ARR[j]'
2. 'i' < 'j'
Where 'i' and 'j' denote the indices ranging from [0, 'N').

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