Tip 1 : Practice as much as you can. You should have hands on practice on coding
Tip 2 : Brush up your basic concepts, Interviewer only asks basics concepts and sometimes that we completely ignore
Tip 3 : Make proper notes of all the subjects separately as to prepare well.
Tip 1 : Keep it short and to the point
Tip 2 : Don't write something that you are not confident of.
10 MCQs were there and 2 Coding Questions were there.
MCQs consists of DBMS and OOPS Concepts
Coding questions were -
1. Longest Increasing subsequence
2. Letter Combinations of Phone Number.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.



A mapping from Digits to Letters (just like in Nokia 1100) is shown below. Note that 1 does not map to any letter.

Interviewer was helpful throughout the interview and was friendly also. I just have to write pseudocode and explain him the solution and dry run on few test cases. I have solved both the question successfuly.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
This was the final round of interview.
Coding questions were asked and some theoretical concepts based questions were asked .
Theoretical questions like Joins in DBMS, All Normal forms in DBMS, Abstraction and why we use it, some simple DBMS queries were also asked.



For the given binary tree

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

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?