Tip 1 : Don’t get demotivated by the rejections. Luck matters a lot here. So don't be so hard on yourself. Try to learn from your mistakes and move forward.
Tip 2 : Read past interview experiences and solve questions asked by those companies.
Tip 3 : Only mention those topics, courses and projects about which you are well aware. Don’t mention any topic in your resume about which you are not confident.
Tip 1 : Only mention those topics, courses and projects about which you are well aware. Don’t mention any topic in your resume about which you are not confident.
Tip 2 : Try to do diverse and unique projects which will make you stand apart.
There were 3 questions which had to be solved in 70 minutes. Not everyone got the same question, but the topic of questions were similar. There only only 1-2 testcases at the time of submission, and rest all test cases were run after the end of assessment. Only those students got selected for the next round who were able to solve all 3 questions. The questions were familiar and if one has practiced well, then it won't be a problem to solve these



For the given binary tree [1, 2, 3, -1, -1, 4, 5, -1, -1, -1, -1]
1
/ \
2 3
/ \
4 5
Output: 1 3 2 4 5



1. The value of any node will not be equal to zero.
2. Subtree of a node X is all the nodes that are below X and X itself.
3. For example in the tree given below, nodes 1, 2 and 3 are in subtree of 1.

4. Subtree sum of X is the sum value of all the nodes in subtree of X.
5. Binary tree is a tree wherein each node has at most two children.
6. Any two nodes may have the same value associated with it.



1. Delete a character
2. Replace a character with another one
3. Insert a character
Strings don't contain spaces in between.
It was a technical round.It first started with my introduction and some discussion on my resume. After that, he gave me several DSA questions and asked for pseudocode.



Given array ‘ARR = { 1, 2, 3, 3, 3, 3, 4, 4, 4, 1, 2 ,0}’ and ‘K = 4’



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



If the input tree is as depicted in the picture:
The Left View of the tree will be: 2 35 2
This round was mainly based on resume and projects. First he asked me to introduce myself. Then we started talking about the courses I have done and he asked me about many of he courses that what was taught to me in these. He also asked about my branch which is Data science and what all are mainly taught in this. Then we moved on to projects. He asked me in depth about one of my projects which was based on deep learning. This discussion lasted till about 30 mins



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

He firstly asked me to explain my approach and then to code it. So, I gave him my first approach: Reverse both the linked list and now start from the beginning of the nodes of both lists and find the nodes which are not similar to both, meanwhile keep track of the previous node also. The point where dissimilar nodes occur, that’s previous node would be the answer. He then asked me if I could solve it with another method.
He asked me the limit of int in c++
It was a straight forward question but I was a little confusing about the exact answer so I gave him an approximate answer
He asked straight definitions like abstraction, encapsulation, etc

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?