Tip 1 : Have your basics storing rather than focusing on react or any other similar frameworks
Tip 2 : Practice DOM manipulation using JS as in the assignment round you'll have to code an assignment with your screen shared
Tip 3 : Practice advance JS concepts like prototyping, promises, etc.
Tip 4 : Study your projects thoroughly, what tech you used where and why
Tip 5 : Don't think that if you are unable to answer some output based questions or to code some question so you will not get selected. I myself have multiple wrong answers to tricky js output based questions but then the interviewer asks you to execute the question and explain why this has happened. If you are able to explain the correct reason for the answer you are good to go.
Tip 1 : Mention your best projects along with Tech stack used so the interviewer can see what all tech stack you have worked on
Tip 2 : Do not put false things on resume, as the interviewer will definitely ask cross questions and you will get tricked.
Tip 3 : Don't worry about the resume too much, you are the main focus of the interview and not the resume.
Timing is the key here, you have to answer 90 questions in 90 mins with negative marking also. This is a purely marking based round and you will be shortlisted only if you are in the top scorers of the round. It included dbms, oops, aptitude and output based questions.
You are given three ds coding questions which you have to solve within 90 mins.
The questions are easy to medium level for this round






If the given list is {1 -> -2 -> 3} (which is sorted on absolute value), the returned list should be {-2 -> 1 -> 3}.



The diameter of a binary tree is the length of the longest path between any two end nodes in a tree.
The number of edges between two nodes represents the length of the path between them.
Input: Consider the given binary tree:

Output: 6
Explanation:
Nodes in the diameter are highlighted. The length of the diameter, i.e., the path length, is 6.
Used DFS approach for the same
You are given a webpage design and you have to code the same using html, CSS, core Js
Tip 1 : complete the assignment as soon as possible
Tip 2 : check Chrome Lightroom score for best practices and accessibility support
Tip 3 : don't use Js frameworks
You are given 20 questions based on the assignment you solved regarding what best practices you should have followed in the assignment and the CSS properties which can be used for the assignment components
You are asked questions regarding HTML, CSS, Advanced Js concepts. The interview was just after the assignment round
This round focus on advanced Js concepts and the tech stack I used in my projects.



Unique element is always present in the array/list according to the given condition.
It was a late night round as i have already had the previous 3 rounds at the same day. The HR asked about my experience regarding the previous rounds and also some situation based questions.
What are your expectations?
What keep you motivated?

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