Tip 1 : command over any one programming language
Tip 2 : oops concept should be clear
Tip 3 : practice basic coding question and sql queries
Tip 1: don't put any thing extra in resume
Tip 2: add good projects
It was online test of 75 mins and comprised of aptitude questions.
Quantitative aptitude - 25 questions
Verbal- 25 questions
Logical reasoning - 25 questions



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
1 coding question was asked and total duration of the round was 60 mins.


Keep in mind that reordering is to be done according to the indexes and not the node values.
Also, ensure that the relative order inside both the even and odd groups should remain as it was in the input.
Input: 'head' -> 1 -> 3 -> 5 -> 7
Output: 'head' -> 1 -> 5 -> 3 -> 7
Explanation:
The nodes with odd indices (1, 5) are grouped together, followed by the nodes with even indices (3, 7).
First analyse the question and try to understand the input and output specifications. After that observe and examples and then approach accordingly
In round few technical and few HR questions were asked.
1. I was asked to introduce myself.
2. Explain my projects mentioned in resume.
3. Asked about which is my primary language.
4. Questions related to oops concept like what are the different oops concept and difference between them.
5. What is linked list .
6. Different searching techniques
7. What is bubble sort
8. Difference between insertion sort and selection sort.



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.
Tip 1: first write the pseudo code
Tip 2: be confident while answering



An element of one array can be mapped only to one element of the array. For example :
Array 1 = {“ab”, “dc”, “ab”, “ab”}
Array 2 = {“dc”, “ab”, “ab”}
The common elements for the above example will be “dc”, “ab”, and “ab”.
Tip 1: first write the pseudo code
Tip 2: be confident while answering

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