Tip 1 : Have Understanding of Computer Fundamentals(OOPS, OS, DBMS)
Tip 2 : Understanding of Basic Data Structures and Algorithms
Tip 3 : Have 1-2 good projects in your resume
Tip 4 : Do not fake anything in your resume
Tip 5 : Interview will revolve around resume only
Tip 1 : Do not fake anything in your resume
Tip 2 : Have 1-2 projects
Timing: Morning around 10AM
Test had WebCam and microphone On
Screen was shared too..



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.



Consider 0-based indexing.
Consider the array 1, 2, 3, 4, 5, 6
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1
There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1
So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.



For the given string “what we think we become”
“what”,” think”, and “become” occurs 1 time, and “we” occurs 2 times in the given string.
Step 1 : Split the string into array of strings based on spaces
Step 2 : Traverse the array and count the frequency of each word using hashmap
Step 3 : Print the result
Timing around 2 PM
Interviewer was friendly. He had around 8 years of experience in the company.
He mainly asked me about my projects and that discussion went about for 15 minutes.
Then he dived into Core subjects. He asked questions from DBMS and OOPS.
I was able to answer most of the questions but got confused in 1-2 questions.
At Last He gave me a coding question to solve which was basically a pattern.




As taught in the video, you just have to modify the code so that instead of printing numbers, it should output stars ('*').
Timing around 6 PM in the evening
Interviewer was friendly and had around 10 years of experience in the company.
He gave me 2 coding questions and asked little bit about core subjects.



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.




That question had straightforward approach.
Timing was around 10:30 PM in the night
HR was friendly.
Introduction.
Tip 1 : Tell Your name, College name, CGPA
Tip 2 : Tell your main skills
How does you day look like/What routine do you follow daily?
Tell me 5 points which make you better than other candidates.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?