Tip 1 : Be very specific in your resume, write which is true.
Tip 2 : if you don't know something, just tell right now I don't know but I will learn if company needs me to learn.
Tip 1 : don't put false things.
Tip 2 : should have some extra curricular
How do you sort large amount of data?



1. A linked list is said to be circular if it has no node having its next pointer equal to NULL and all the nodes form a circle i.e. the next pointer of last node points to the first node.
2. An empty linked will also be considered as circular.
3. All the integers in the linked list are unique.
4. In the input, the next pointer of a node with i’th integer is linked to the node with data (i+1)’th integer (If (i+1)’th node exists). If there is no such (i+1)’th integer then the next pointer of such node is set to NULL.
HR round was easy one. The HR joined the called ask some of the basic HR questions.
Tell me about yourself.
What are your strengths and weaknesses?
Tip 1 : Start with you name.
Tip 2 : Tell most of the things which are In JD.

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?