Tip 1: Prepare DSA thoroughly. I personally recommend Coding Ninjas for structured interview preparation.
Tip 2: Stay confident and relaxed during the interview — a calm mind helps you think better.
Tip 3: Revise your projects in detail, including how they work and their core functionalities.
Tip 1: Keep your resume concise (preferably one page) and list only the skills you are confident in.
Tip 2: Avoid adding false information to your resume.
In the Online Assessment, there were 2 coding questions along with MCQs based on DSA.



If more than one such pair of indices exist, return the lexicographically smallest pair
You may not use the same element twice.
By using dictionary, I was able to solve.



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
by using reverse approach, I solved it.
Finding the ages of three daughters puzzle. (Learn)



If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
By using BFS.
I was able to solve the coding question successfully, but I couldn’t answer 2–3 theoretical questions related to Python, such as multithreading concepts. I believe this was the main reason for my rejection.



By using DP I was able to solve it.

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