Tip 1 : Be very much clear with your basics and skills.
Tip 2 : Have a sound knowledge and think twice before answering any question
Tip 3 : Have good understanding and confidence over Data Structures and get good understanding of its concepts. At least practice 5-6 coding questions on a daily basis on any good coding platform. I had completed around 170+ questions on Leetcode and 200+ questions on Geek For Geeks. Practice regularly rather than completing all coding questions in one day. The main aim should be practice with good strategy.
Tip 1 : The resume should not be more than 1 page. Be brief and write only those skills, projects or achievements which you have completed yourselves and have thorough knowledge.
Tip 2 : There can be any type of question from the topics/skills/achievements, which you have mentioned in the resume.



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL

1. The path from NODE1 to NODE2 does not include NODE1 and NODE2.
2. NODE1 and NODE2 are unique.
3. If there is no element in the path from NODE1 to NODE2, return -1.
What is deadlock? How to recover from the deadlock and how to prevent them?
Explain the main differences between thread and process?
Define ACID and explain with examples. There were few questions on join queries. These were of medium complexity.

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?