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 10 MCQ Questions that are based on DBMS, and DSA.
after that 2 Coding Questions.



By using Dynamic Problem.
In that Round, Interviewer Asked DBMS, and JavaScripts Questions Like Hoisting, Closure.
After that, they asked how Website Works. and asked One Coding Question.



1. The points in the pair are distinct.
2. Euclidean distance and the Manhattan distance between the points of the pair should be equal.
1. Pair (‘P’, ‘Q’) is the same as pair (‘Q’, ‘P’).
2. Euclidean distance is given by: (( ‘X2’ - ‘X1’) ^ 2 + (‘Y2’ - ‘Y1’) ^ 2) ^ 0.5.
3. Manhattan distance is given by: |’X2’ - ‘X1’| + |’Y2’ - ‘Y1’|, where points are (‘X1’, ‘Y1’) and (‘X2’, ‘Y2’).
Let points be: (1, 2), (2, 3), (1, 3)
The Euclidean distance between points (1, 2) and (1, 3) is: 1
The Manhattan distance between points (1, 2) and (1, 3) is: 1
The Euclidean distance between points (2, 3) and (1, 3) is: 1
The Manhattan distance between points (2, 3) and (1, 3) is: 1
So the pairs can be: [(1, 2), (1, 3)] and [(2, 3), (1, 3)].
So the number of pairs is 2.
By using Sorting and 2 pointers to check K sum pairs.

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