Tip 1 : Do as much hands on as you can do in data structures & Algorithms
Tip 2 : Practice on real world problems
Tip 3 : Practice System Design Questions.
Tip 1 : Make only 1 page resume
Tip 2 : Be honest what you put on your 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. Traverse the list.
2. Check for the minimum value.
3. Add the nodes on top of one another based on the the smaller value.
Design School login and signup system with OTP based feature.
Tip 1 : Plan for all the tables which you will be needing it in your system.
Tip 2 : Design a DB.
Tip 3 : Now explain all the features and the flow your system will be having
Various HR based questions and questions on resume and Projects
Tip 1: Be honest in your resume
Tip 2: Be honest with all the work you did till date.
Tip 3: First listen, think and then answer
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?