Tip 1 : Your basics should be very strong, if you are good with basic then you can do anything.
Tip 2 : Along with DSA, you should also be aware with any one technology like react or node and some hands-on project.
Tip 3 : Believe in yourself you can do anything.
Tip 1 : You should have 1 full stack project on your resume.
Tip 2 : Resume should be crisp and to the point.
It was a 90 min test. Screen recording was on and also we couldn't switch on any tab. 15 MCQs and 3 coding question were there.






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.
I created 2 arrays for storing left building max height and another one for right building.
it was approx. 3 pm and environment was very good. The interviewer was very supportive .



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.
I solved this problem with the help of stack.
When open bracket is there, push the bracket in stack and when close is there, pop them. After that if stack is empty, we can say the equation is balanced otherwise not.



You must write an algorithm whose time complexity is O(LogN)
First we find the mid element and if mid is equal to target, then we can say element found otherwise if mid is greater or smaller we eliminate one part.
The timing was 10am, interviewer was very polite.
Why did you choose computer science?
Some family details
Tip 1: I explained these question very well.
Tip 2: I was very calm that day.

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