Tip 1 : Practice coding problems online
Tip 2 : Have basic knowledge of the technology you're interested in
Tip 3 : Don't hesitate to learn something new
Tip 1 : Have some project or internship experience
Tip 2 : Try to show your full knowledge in the interview



If the first list is: 1 -> 2 -> 3 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
Then new sorted linked list will be 1 -> 2 -> 2 -> 3 -> 3 -> 5 -> NULL.
Technical round



F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.



Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.
Asked about myself, my hobbies, gave a breakdown of the ctc and some company policies
Tell me about yourself
What keeps you motivated?
What are your strengths and weaknesses?

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