Tip 1 : Make sure to go through the recent interview experience for the same role
Tip 2 : Keep your DSA and CS Fundamentals clear
Tip 1 : Projects related to Web development or ML/AI
Tip 2 : Good Coding profiles
MCQs and Short Answer type questions related to DSA and CS Fundamentals



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
Given short description and code snippet
Brief introduction about my projects and Engage program



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Brute force using loop
Then using stack
Space optimized using 2 pointers
Brief introduction about projects, mostly about the Engage program




Here, for ‘X ’= 7, the output will be 1 3 7.
Was able to solve for returning the right node by returning the next node in the level order traversal
Was able to give the path after getting the right node.
But the interviewer wanted both to be calculated simultaneously and I was not able to explain that in the given time.

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?