Tip 1 : Do Standard DSA Questions
Tip 2 : Be confident in telling your approach
Tip 3 : Believe in yourself
Tip 1 : Have a one page resume
Tip 2 : Don't write false information on resume
2 coding questions + some mcq related to DBMS, OS



• 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.
For the given binary tree :

The BST will be:

Note: Each node is associated with a unique integer value.
Standard problem



Given array/list can contain duplicate elements.
(arr[i],arr[j]) and (arr[j],arr[i]) are considered same.
Solved using 2 pointer approach, used set to store the unique pairs
Interview started with my introduction. After that he asked me about my projects. Then he asked me to explain OOPS concepts and implement them. I write the code but it did not work there were some errors. So me moved forward he asked a coding question. Find whether the two strings are anagram or not. I solved it. After that he asked me questions related to DBMS. I have not studied DBMS properly so I could not answer all the questions.



Two strings are said to be a permutation of each other when either of the string's characters can be rearranged so that it becomes identical to the other one.
Example:
str1= "sinrtg"
str2 = "string"
The character of the first string(str1) can be rearranged to form str2 and hence we can say that the given strings are a permutation of each other.
Solved using frequency array of size 26.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which keyword is used for inheritance?