Tip 1 :Do at least 300 Coding Questions. Mainly focus on Trees, DP Arrays
Tip 2 : For Theory Practice MYSQL Queries and Core Java (Mainly OOPS concept).
Tip 3: Prepare with Good Introduction, Projects you created, Technology you used.
Tip 1: Try to create only one page Resume.
Tip 2:Elaborate your projects precisely and write only those things on which are confident.



Input array [5,5,6,4,6],If we look at the frequency of different elements in this array.We can see,4 appears an odd number of times, so our answer will be 4.
Take XOR of all the elements



Note that the level order traversal must not contain any null values, simply return the tree in level order.
Used BFS Algorithm.



1. You can only move one disk in one move.
2. You can not place a larger disk on top of a smaller disk.
3. You can only move the disk at the top of any rod.
You may assume that initially, the size of the ‘i’th disk from the top of the stack is equal to ‘i’, i.e. the disk at the bottom has size ‘N’, the disk above that has size ‘N - 1’, and so on. The disk at the top has size 1.

Use two recursive calls.(basic problem).
There are 3 ants sitting at the three different corners of an equilateral triangle. Now each ant randomly picks a direction and starts moving along the edge of the triangle. What is the probability that none of the ants collide with each other?
Architecture of DBMS,What is Normalization, Lossy decomposition.Acid Properties,Find Nth highest salary of Employee.



• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.
1. All the elements of the Binary Search Tree are unique.
2. You can’t use the same node value/element of BST twice.
Where you will see yourself in 5 years, what you know about this company, why you want to Join. Strenth and Weakness.

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