Tip 1: Prepare DSA well, and I recommend Coding Ninjas and GeeksForGeeks 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.
There were 10 MCQs and some 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.


In 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.



If N = 4 then the output will
*******
*****
***
*

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