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 the skills that you are confident in.
Tip 2: Do not put false things on your resume.
There are 3 Coding Questions and 15 MCQs Based on JavaScript, and SQL.



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.
By using HashMap Solve that questions
The question was based on creating REST API for an Application basically performs CRUD operation.
Tip 1: Do practice for JavaScript.
The interviewer was very familiar and they asked some questions on Python, Project related Questions and DBMS Questions. after that they asked coding question.




By using 4 pointers for TOP, DOWN, RIGHT, LEFT. I was able to solve.
The interviewer was not familiar, and they asked coding questions, which I was able to solve but they are not satisfied with my approach so that's the reason they rejected me. they also asked some questions based on OOPS, DBMS, and SQL.



For the given string “deed” :
The possible subsequences are {“”}, {“d”}, {“e”}, {“de”}, {“e”}, {“de”}, {“ee”}, {“dee”}, {“d”}, {“dd”}, {“ed”}, {“ded”}, {“ed”}, {“ded”}, {“eed”} and {“deed”}.
As, {“d”}, {“e”}, {“de”}, {“ed”} and {“ded”} are repeated.
The distinct subsequences are {“”}, {“d”}, {“e”}, {“de”}, {“ee”}, {“dee”}, {“dd”}, {“ed”}, {“ded”}, {“eed”} and {“deed”}
Thus, the output will be 11.
As the answer can be large, return your answer modulo 10^9 + 7.
By using Memorization DP. I was able to solve but my program failed in some cases, I was able to explain but they were not satisfied with my explanation. so they rejected me.

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