Tip 1 : Go through theory of OOPs, DBMS, OS questions
Tip 2 : Solve Leetcode and GeeksForGeeks interview related questions
Tip 3 : Having 2-3 projects is enough and have proper understanding of it. You should be thorough with its tech stack and your role in the project.
Tip 1 : Be very honest and figure out only those things in your resume that you really know. Anything extra or unknown may have a negative impact upon your interview if asked by the interviewer.
Tip 2 : You should be thorough with the project mentioned and the certifications provided.
This round the completely coding based strictly checking my skills and knowledge on Data Structure and Algorithms.One hour interview round covered different topics like trees, dynamic programing and bfs dfs.




Can you solve the problem in O(N) time?



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].
11 am – 12 noon



An integer 'a' is closer to 'X' than an integer 'b' if:
|a - X| < |b - X| or ( |a - X| == |b - X| and a < b )
if X = 4, 3 is closer to 'X' than 9, as |3-4| < |9-4| i.e., 1 < 5 and if X = 4, 2 and 6 are equally close to it, as |2-4| == |6-4| = 2, but we say 2 is closer to 4 than 6, as 2 is smaller.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Work experience and project based.
What tech stack you have used?
What is your biggest acheivement?
Tip 1 : Have knowledge about the project mentioned.
Tip 2 : Explore the company's values properly and be ready for the questions that are asked regarding the company.
Tip 3 : Be confident

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?