Tip 1 : Practice on leetcode
Tip 2 : Know your projects inside out
Tip 3 : Internships are an advantage
Tip 1 : Mention projects
Tip 2 : Don't overload with information
Aptitude and Quantitative Test, Logical reasoning



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
Recursive solution: Compare each item in both lists. Whichever is smaller, increment that list and recursively call again.
Basic HR questions
Explain work carried out in internships
Tip 1 : Explained my role during the internship
Tip 2 : Explain the work carried out



Consider ARR = [“coding”, ”codezen”, ”codingninja”, ”coders”]
The longest common prefix among all the given strings is “cod” as it is present as a prefix in all strings. Hence, the answer is “cod”.
Sort the list. Compare the first and last items. Iterate over the first item till the characters match in the last item. Return the common characters
General HR-type round with the CTO
CTO asked about problems faced during projects and how I solved them

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