Tip 1 : Be very strong in basics, especially OOPS and clean code
Tip 2 : Be confident about what you know, however little it is. If you don't know something, just tell them.
Tip 3 : If you're not well versed in different languages, it's okay to just know one, but know it well.
Tip 1 : Only mention the things you know
Tip 2 : Your branch, projects, etc do not matter a lot if you've mentioned your skills explicitly and know it well



If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
I sorted the array and then used a for loop to find the missing element



Let ‘ARR1’ = [1, 5, 10, 15, 20] and ‘ARR2’ = [2, 4, 5, 9, 15]
In this example, common points are 5, 15.
First, we start with ARR2 and take the sum till 5 (i.e. sum = 11). Then we will switch to ‘ARR1’ at element 10 and take the sum till 15. So sum = 36. Now no element is left in ‘ARR2’ after 15, so we will continue in array 1. Hence sum is 56. And the path is 2 -> 4 -> 5 -> 10 -> 15 -> 20.




1. The string consists of only digits 0 to 9.
2. The numbers will have no more than six digits.
This was a pair programming round, in which they would give you a question and ask you to solve it while on a call with them.
The main focus of this round is to test your basics.



The given linked list is 1 -> 2 -> 3 -> 2-> 1-> NULL.
It is a palindrome linked list because the given linked list has the same order of elements when traversed forwards and backward.
Can you solve the problem in O(N) time complexity and O(1) space complexity iteratively?
Explain OOPS concepts.
What are ACID properties?
Tip 1 : Don't pretend you know something when you don't
Tip 2 : Try to be as confident as you can
Tip 3 : Depth>Breadth of knowledge
What are your hobbies?
What are your strengths and weaknesses?
Tip 1 : Be an open-minded person
Tip 2 : be candid, there is no need to prepare anything for this round

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?