Tip 1 : Practice LLD.
Tip 2 : Practice OOPS and DS Algo.
Tip 1 : Resume should be descriptive.
Tip 2 : Resume should cover your basic details.
MCQ + 2 coding question



The idea is simple, that if there are n number of elements inside an array, there are two choices for every element. Either include that element in the subset or do not include it.



Given ‘N’ = 2, The total number of BST’s is 2.

1. A binary search tree is a rooted binary tree whose internal nodes each store a key greater than all the keys in the node's left subtree and less than those in its right subtree.
2. A structurally unique binary search tree is a tree that has at least 1 node at a different position or with a different value compared to another binary search tree.
For all possible values of i, consider i as root, then [1….i-1] numbers will fall in the left subtree and [i+1….n] numbers will fall in the right subtree. So, add (i-1)*(n-i) to the answer. The summation of the products will be the answer to the number of unique BST.
System design questions.
Design Instagram.
Tip 1 : Firstly, remember that the system design round is extremely open-ended and there’s no such thing as a standard answer. Even for the same question, you’ll have a totally different discussion with different interviewers.
Tip 2 : Design your structure and functions according to the requirements and try to convey your thoughts properly to the interviewer so that you do not mess up while implementing the idea .
Asked questions on previous projects and situation based question in company.

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