Tip 1 - Practice Atleast 250 Questions from coding ninjas
Tip 2 - Ex- Do atleast 2 good projects
Tip 1 : Have some good projects on resume.
Tip 2 : Do not put false things on resume and be confident.
Round 1 consisted of 30 MCQs questions of good Quality level to be done in 60 Minutes and it was a Pen and paper based test.
Out of 100 Students that appeared 24 were selected for the second round which was a Programming contest on Hackerrank and consisted of 3 Questions to be done in 1 hour 30 minutes.


1. A balanced binary tree is a binary tree structure in which the left and right subtrees of every node differ in height by no more than 1.
2. A binary search tree is a binary tree data structure, with the following properties
a. The left subtree of any node contains nodes with value less than the node’s value.
b. The right subtree of any node contains nodes with values equal to or greater than the node’s value.
c. Right, and left subtrees are also binary search trees.
Below tree, is a balanced binary search tree

Below tree is not a balanced tree as the height of the left subtree and right subtree of node ‘5’ differs by more than 1. Moreover, the tree is also not a BST as node ‘2’ is less than node ‘3’ but ‘2’ is the right child of ‘3’.

Interviewer started discussing my resume and projects. Then he went into OOPS and asked almost everything including what is Volatile keyword, extern, explicit ,type checking, typecasting, Difference between C,C++. What is Exception handling, Memory layout of C, How are namespaces used and why are they used. the discussion went on for long.



1 2 3
4 5 6
For the above 2*3 matrix , possible paths are (1 2 3 6) , (1 2 5 6) , (1 4 5 6).
You can return the paths in any order.
We have to calculate m+n-2Cn-1 here which will be (m+n-2)! / (n-1)! (m-1)!
The conversation started with a discussion of Projects then he asked me to design a LRU Cache, then DBMS Basics like What is a foreign key, then He asked me to design a URL shortener and after that few HR questions like which field interests me and Why BlueStacks?
Design a LRU Cache?
What is a foreign key, then He asked me to design a URL shortener
Which field interests me and Why BlueStacks
When it comes to such type of discussion you have to show how well thorough you are with the basics of Subjects and stick to your points even if the interviewer contradicts.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?