Tip 1 : Take ds courses
Tip 2 : Practice output and aptitude
Tip 3 : Watch youtube videos
Tip 1 : Just write what you know
Tip 2 : Take template from internet
It contained MCQ of aptitude, oops, ds and 1 coding question



It was technical round with some behaviour questions related to me, my dream, my family and hobbies. The interviewer asked me Sql queries and some dsa questions approach.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Just traverse from back




Example :
For the given binary tree :
Output : 24 14 2
Explanation: Rightmost diagonal contains elements {5, 10 , 9} its sum is 24, middle diagonal contains elements {6, 3, 5} its sum is 14, leftmost diagonal contains elements {2}. Thus the answer should be “24 14 2”.

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?