Tip 1 : Always try to be clear with your basic concepts .As you are a fresher , you are expected to be clear with your basic concepts such as OOPS , MySql etc and also you should be able to explain it properly to the interviewer.
Tip 2 : Practice at least 200 Questions and the best platform for preparing is LeetCode.
Tip 3 : You should be clear with your projects and the technology it involved . 2-3 Projects are enough for the interview.
Tip 1 : Make neat resume with projects and internships mentioned.
Tip 2 : Mention only those things which are true.
Tip 3 : Do mention if you won any Hackathon.
It was a 90 minute round on coding.
Timing : 12 am
No. Of questions : 5
Webcam : Yes
It was a 1 hour round on coding and problem solving.



Can you solve each query in O(logN) ?
Step 1 : Initially I applied bubble sort.
Step 2 : The interviewer asked me to optimize the solution
Step 3 : I had to find a pivot and then sort .
Step 4 : I applied Binary search to find the pivot and then performed sort.



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
Step 1 : I first merged the linked list and applied sorting.
Step 2 : The interviewer asked me to optimize the solution
Step 3: I then took an empty linked list and starting adding elements by comparing the elements( as they are sorted so no need to compare one element with the complete list) of both the given linked list.
Step 4 : Then interviewer asked me to optimize space complexity.
Step 5: I took the first linked list and starting comparing its element with another array and merged the other array into first linked list.
This was a 30 minute round on questions on data structures.

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