Tip 1 : DSA (Except graph)
Tip 2 : System Design
Tip 3 : Project
Tip 1: Tell them you like the company objective and the problem they are trying to solve.
Tip 2: Show your eagerness to learn new things.



For the given binary tree

The level order traversal will be {1,2,3,4,5,6,7}.



You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.
Brief intro about myself
Project discussion
Dsa questions.



You have an infinite number of elements of each type.
If N=3 and X=7 and array elements are [1,2,3].
Way 1 - You can take 4 elements [2, 2, 2, 1] as 2 + 2 + 2 + 1 = 7.
Way 2 - You can take 3 elements [3, 3, 1] as 3 + 3 + 1 = 7.
Here, you can see in Way 2 we have used 3 coins to reach the target sum of 7.
Hence the output is 3.
What are joins and their types? (Learn)

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