Tip 1 : Concentrate on coding, time complexity.
Tip 2 : Practice at least 150 questions.
Tip 3 : Practice coding in few websites where you can optimise the code.
Tip 1 : Mention only the known topics.
Tip 2 : Prepare everything that you have mentioned in your resume.
It was an offline exam at 11 A.M. in the morning



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
One coding question and questions related to SQL and Core Java.
Second highest salary in SQL
Tip : Use joins
Standard DSA Questions



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Related to how system works, security, optimization, about projects in my resume
About Https, Security details, Projects
Tip 1 : Try to answer all the questions
Tip 2 : Confidence while answering
Tip 3 : Don't be tensed

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