Tip 1 : solve all the must do questions available at GeeksforGeeks and coding ninjas
Tip 2 : having a major project will give you an edge over others
Tip 3 : practice regularly on Codechef and Codeforces and brush up your skills
Tip 4 : if you are a fresher, then placement preparation course from coding ninjas can really help you in short span of time
Tip 1 : technical skills mentioned in the resume should be on your tips
Tip 2 : having a team project will give you an edge over others
Tip 3 : put the links of your competitive profiles in your resume, then your stats speak louder for your skill set
This round was carried out on Morgan Stanley's online test platform. It was very user friendly platform and easily understandable. Countdown Timer was located at the top right corner that helped me to keep a check on the remaining time and I planned my answers and code accordingly.



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



If the given number is 10 with the binary representation: 1010
The rightmost set bit would be 2 (counted from right).



the interview was scheduled over zoom and there was only one single interviewer and we both have out videos turned on.



1. A ‘path’ is a sequence of adjacent pair nodes with an edge between them in the binary tree.
2. The ‘path’ doesn’t need to pass through the root.
3. The ‘path sum’ is the sum of the node’s data in that path.



Note: Since the number of ways can be very large, return the answer modulo 1000000007.
N=3

We can climb one step at a time i.e. {(0, 1) ,(1, 2),(2,3)} or we can climb the first two-step and then one step i.e. {(0,2),(1, 3)} or we can climb first one step and then two step i.e. {(0,1), (1,3)}.
What are you most proud of?
What has been your greatest failure?
Tip 1 : basically these kind of questions has no wrong or right answer, the intent to answer and face these questions should be positive, try to relate it with some real life experience from your past
Tip 2 : also each and every company wants optimistic candidates, try to look at the positive side of any circumstance that you are given to think about
Tip 3 : never try to show yourself a perfect person

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?