Tip 1 : Have your concepts clear
Tip 2 : Be confident
Tip 3 : Practice
Tip 1 : Mention Projects in which you are confident
Tip 2 : Mention language versions like css3, es6 etc.



Consider 'Intervals' = [[1, 3], [5, 7], [8, 12]], and 'newInterval' = [4, 6]
The interval [4, 6] overlaps with [5, 7]. Therefore we can merge the intervals and produce an interval [4, 7]. Hence the answer [[1,3], [4,7], [8,12]]
This was a project round and I had to explain my projects



1. The array follows 0-based indexing, so you need to return the 0-based index of the element.
2. Note that the element at the equilibrium index won’t be considered for either left sum or right sum.
3. If there are multiple indices which satisfy the given condition, then return the left-most index i.e if there are indices i,j,k…. which are equilibrium indices, return the minimum among them
4. If no such index is present in the array, return -1.
Backend Round
3rd highest salary using tables.
What are indexes?
What are stored procedures?
Telephonic conversion with product manager. He asked some puzzles.

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