Tip 1 : Have a basic understanding of DSA and Object-oriented programming.
Tip 2 : Have good projects on your Resume.
Tip 1 : Have good projects and practice easy medium questions on Leetcode and have good knowledge of CS fundamentals.
Tip 2 : Be confident. There will be behavioral interviews that will test how good you are as a company fit.
15 aptitude questions, 30 questions on cs fundamentals, and 2 coding questions.



For the given 5 intervals - [1, 4], [3, 5], [6, 8], [10, 12], [8, 9].
Since intervals [1, 4] and [3, 5] overlap with each other, we will merge them into a single interval as [1, 5].
Similarly, [6, 8] and [8, 9] overlap, merge them into [6,9].
Interval [10, 12] does not overlap with any interval.
Final List after merging overlapping intervals: [1, 5], [6, 9], [10, 12].
Was asked about previous projects, cs fundamentals, and some behavioral questions.
What are ACID properties, what is the difference between SQL and NoSQL, deadlock. Question on project.

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