Tip 1: Prepare DSA thoroughly, and I recommend Coding Ninjas for interview preparation.
Tip 2: Be confident and relaxed during the interview.
Tip 3: Review your projects, including how they work and their functionalities.
Tip 1: Keep your resume concise, ideally one page, and list only the skills you are confident in.
Tip 2: Do not include anything false on your resume.
There were 10 MCQs and 3 Coding Questions.



Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
Take one element as a pivot element & check the difference between the sum and another number in the remaining array
The technical Interviewer asked Python, Project related Questions, Coding questions, and DBMS Questions.




If we are given the above binary tree as input then moving from root node(5) to the farthest leaf node(50), the path formed will be [ 5->10->25->35->40->45->50 ]. The total number of nodes encountered is 7, therefore the maximum depth of the binary tree is 7.
By using DFS

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?