Tip 1 - Practice Atleast 250 Questions from geeks from geeks and coding ninjas
Tip 2 - Ex- Do atleast 2 good projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume and be confident.
Round 1(Online test on Hackerrank platform – 60 mins):
2 coding questions


An edge with type 1 can only be traversed by a person ‘A’.
An edge with type 2 can only be traversed by a person ‘B’.
An edge with type 3 can be traversed by both persons ‘A’ and ‘B’.
One simple solution is to delete each edge one by one and check subtree sum difference. Finally choose the minimum of them. This approach takes quadratic amount of time.


Following is the algorithm to find all the prime numbers less than or equal to a given integer n by the Eratosthene’s method:
When the algorithm terminates, all the numbers in the list that are not marked are prime.
The Interviewer asked some questions related to networking and OS.
Discussion on Thrashing
TCP Vs. UDP
How the OS handles Page Faults?
Explain the layers of the OSI model with their brief explanation.



If the given array is [1, 3, 2], then you need to return [3, -1, -1]. Because for 1, 3 is the next greater element, for 3 it does not have any greater number to its right, and similarly for 2.
Use two loops: The outer loop picks all the elements one by one. The inner loop looks for the first greater element for the element picked by the outer loop. If a greater element is found then that element is printed as next, otherwise, -1 is printed.
In this round, I’d given only one question to solve. He was only interested in the approach and didn’t ask to code.
After he was satisfied with my solution, he asked if I have any questions for him. I asked him why Uber doesn’t use OTP verification like Ola to verify rider credentials. And then we had some discussion on it.



If N is 3,all unique BST will be:


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?