Tip 1: Go through core subjects' notes.
Tip 2: Be confident, and always ask as many questions as you can to understand the problem better.
Tip 3: Believe in yourself.
Tip 1 : Don't mention false achievement or projects.
Tip 2 : Try to mention only those things which you have in-depth understanding.



If the first linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL and the second linked list is 4 -> 5 -> NULL.
The two numbers represented by these two lists are 12345 and 45, respectively. So, adding these two numbers gives 12390.
So, the linked list representation of this number is 1 -> 2 -> 3 -> 9 -> 0 -> NULL.









The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?



Can you solve each query in O(logN) ?
Explain polymorphism and inheritance. (Learn)

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