Tip 1 : Practice atleast 300 question.
Tip 2 : Resume should be of one page, if you are fresher.
Tip 3 : Don't lie on your resume.
Tip 1 : Keep it short and concise.
Tip 2 : Mention at least two good projects on your resume and know everything about those projects.
This was coding test. There were two question from DP and arrays respectively. I solved both questions in given time. I got shortlisted for the next round.



Here, sorted paths mean that the expected output should be in alphabetical order.
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1
Expected Output:
DDRDRR DRDDRR
i.e. Path-1: DDRDRR and Path-2: DRDDRR
The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.



N = 9
‘9’ can be represented as:
2 + 3 + 4 = 9
4 + 5 = 9
The number of ways to represent ‘9’ as a sum of consecutive natural numbers is ‘2’. So, the answer is ‘2’.
1. The numbers used to represent ‘N’ should be natural numbers (Integers greater than equal to 1).
It was elimination round. Questions for this round were related to my resume(mostly projects), Data Structures (almost all linear data structures basic were asked), OS (Deadlock condition, Deadlock prevention, Difference between Process and Process Table, Threads, Difference in Thread and Process). It was of duration 60 mins. The question domains (like OS, DBMS, CN) varied from interviewer to interviewer. Nearly 28 were selected from this round. All rounds after this round were compulsory for selected students.
The interviewer asked me to introduce myself in 5 mins. I had one technology-related many projects in my resume. He asked me to explain the technology used in one of my projects. we discussed nearly 45 minutes on this project. He also asked me about the toughest situation of my life. Then he asked me that how do I see myself in five years. In the end, he asked me whether I had any question to him. I asked him some questions and interview ended. The interviewer was very nice and supportive.
This round was a mixture of both technical and HR. I was asked on Computer Network (Layers of TCP/IP model, Protocols used in mailing, Socket Programming methods, related questions). Also, some questions on OS like present CPU configurations, Producer-Consumer problem. The interviewer tried confusing me many times and I was confused as well at some points. In the end, he asked me whether I had any question to him. I asked him some questions and interview ended.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?