Tip 1 : Practice two questions atleast per day. (Starting from Arrays)
Tip 2 : Focus on code optimisation once you are done with brute force
Tip 3 : Always be honest with interviewer. He is much more smarter than you.
Tip 1 : Only mention those topics in resume in which you are more confident. Don't put extra things to fill your CV.
Tip 2 : Mention atleast one project in your resume. Interviewer will test your skill on the basis of mentioned projects.
They asked two coding questions of level hard. Each question completion time was 45 min.



If the matrix is:
10 20 30 40
15 20 35 42
27 29 37 46
32 33 38 49
The output will be the elements of matrix in sorted order:
10 15 20 20 27 29 30 32 33 35 37 38 40 42 46 49
Can you solve this in O((N ^ 2) * log(N)) time and O(N) space complexity?
In this round, the interviewer was an engineering manager. I started with the introduction and then moved to the projects. After seeing that my projects were in web development, he asked questions related to it.
There are two jugs, each of 4 and 3 liters respectively, without any measuring marks. How many minimum steps are required to have 2 liters of water into the 4 litre jug? (the jugs can be filled any number of times with water, and they can be emptied any number of times).
Here we need 2 litre water in 4 litre jug (not in any of the two jugs).
1. Which sorting algorithm do you like and explain it
2. What’s the difference between merge sort and quick sort and their use cases?
I chose merge sort. Explained divide and conquer concept and time complexities related to it.
What is thread in OS?
Is the node multithreaded?
What is IPC? What are the different IPC mechanisms?
What is virtual memory?
In this round, I gave my introduction to the interviewer who was very friendly. She asked me some very basic questions about me and my background.
What are your strengths and weaknesses?
How to tackle pressure during work?
Why should we hire you?
Be honest during interview and keep your mind callm

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?