Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.
Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.
This test consists of two coding questions and some MCQ regarding computer fundamentals.



Two cards are said to be of different types if they have different numbers written on them.



1. Each student gets at least one book.
2. Each book should be allocated to only one student.
3. Book allocation should be in a contiguous manner.
Input: ‘n’ = 4 ‘m’ = 2
‘arr’ = [12, 34, 67, 90]
Output: 113
Explanation: All possible ways to allocate the ‘4’ books to '2' students are:
12 | 34, 67, 90 - the sum of all the pages of books allocated to student 1 is ‘12’, and student two is ‘34+ 67+ 90 = 191’, so the maximum is ‘max(12, 191)= 191’.
12, 34 | 67, 90 - the sum of all the pages of books allocated to student 1 is ‘12+ 34 = 46’, and student two is ‘67+ 90 = 157’, so the maximum is ‘max(46, 157)= 157’.
12, 34, 67 | 90 - the sum of all the pages of books allocated to student 1 is ‘12+ 34 +67 = 113’, and student two is ‘90’, so the maximum is ‘max(113, 90)= 113’.
We are getting the minimum in the last case.
Hence answer is ‘113’.
This round is not an eliminatory round. All students have been given 3 questions from which they have to solve 2 questions, write their approach on-page, and submit it as pdf. The discussion on approach was carried out in subsequent rounds if the candidate clears the first technical round of interview.
It was a technical round that is based on DSA and computer fundamentals.



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?



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
1.What is virtual memory
2.WHat is segmentation
3.WHat is deadlock
4.WHat are semaphores
5.What are the conditions of deadlock.
1.ACID properties of DBMS
2.What are the differences between a DBMS and RDBMS?
3.What is normalization and what are the different types of normalization?
This round was based on the case study that we got as an assignment in which we were given 3 problems.
The only student who have clear previous round are able to give this round.

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