Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.
Tip 1 : Make your resume short and try to make it one page only and mention all your skills that you are confident in.
Tip 2 : Do not put false things on your resume.
I had been rejected for that round. Coding round that was easy-medium questions. but I think I was not performing well in MCQs.
60 MCQ Questions based on Aptitude



By using a temp array to store all spilt words.



Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
By using creating Dummy nodes to store 0,1,2 separately.


By using Backtracking.

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