Tip 1 : Must do some good projects.
Tip 2 : Must prepare for CSE core subjects.
Tip 1: Don't put false things on your resume.
Tip 2: Must do some good projects for resume
It was basically online Aptitude round. Questions were mainly comprises of Quants, Verbal, General Aptitude etc.
It was basically a subjective coding / technical round. So there were 6 questions in total three for technical questions like explain client server architecture or questions related to Design a UBER like system.



Input: Let the binary tree be:

Output: 2
Explanation: The root node is 3, and the leaf nodes are 1 and 2.
There are two nodes visited when traversing from 3 to 1.
There are two nodes visited when traversing from 3 to 2.
Therefore the height of the binary tree is 2.
Step-1 : I have used recursion for the problem.
Step-2: Calling of left child and right child via recursion.
Step-3 returning the maximum height between left child and right child.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Step-1 Reversing a linked list using pointer.
Step-2 Talking next pointer and assigning current pointer to the previous pointer till the size of linked list
Step-3 Returning the prev.



Consider the array {2,1,5,6,3,8} and 'K' = 3, the sorted array will be {8, 6, 5, 3, 2, 1}, and the 3rd largest element will be 5.
1) Kth largest element in an array is the kth element of the array when sorted in non-increasing order.
2) All the elements of the array are pairwise distinct.
Step-1 Putting all the elements of array in priority queue.
Step-2 removing the elements of priority queue till k>0.
Step -3 returning the last removed value from priority queue.
It was basically a technical+Hr round comprises of questions based on your resume like what projects and in depth questions in project. Like the libraries you have used in that particular project. We even have to show them the love demo of our project and the code working behind it. Then they will ask questions related to the project.



Return the list of all those words sorted in alphabetical. Return an empty list in case there are no such words
Input: cat, banana, dog, nana, my, walk, walker, baby, dogwalkers, s, babymybaby
Output: babymybaby dogwalkers
Here in the given list of words, you can see that the words babymybaby, dogwalkers contain the words present in the list i.e. ‘s’, 'dog’, ‘walker’,‘baby’ and ‘my’ and both are of the same length.
Step-1 Take a space seperated array for the sentence.
Step-2 By iterating in the array find the word having maximum length.
Step-3 print the word having maximum length.

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