Tip 1 : Be confident!
Tip 2 : Maintain high Cgpa
Tip 3 : Do your best
Tip 1 : Mention clear points
Tip 2 : Atleast 3 projects and never put anything you have not revised
This round was MCQ and coding round. 25 MCQs and one coding question were asked. MCQs were based on OS, DBMS, Aptitude and Data Structures.


day1 = {5, 6, 2}
day2 = {2, 4, 1}
In this case, the ideal order will be to perform work 3 on the first day, work 1 on the second day and work 2 on the fourth day. The order with respect to Day1 in which the work is done will be {2, 5, 6} which is non-decreasing. Hence the number of days needed to finish all work will be 4.
It is a simple iteration problem.
This was a Data Structural round. Only one coding question was asked by the interviewer. The interviewer was very friendly. This round was very easy.



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Just applied the normal bubble sort algorithm. It is very easy and simple.

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