Tip 1 : Make sure that your aim is not solving as many questions as possible but rather solving questions in a manner that clears your concepts and maximizes your probabillity of being able to solve the next question given to you on that particular topic.
Tip 2 : Make sure you communicate effectively with the interviewer and walk him/her through your approach and solutions.
Tip 1 : Do not cram in stuff. A 1 page resume is more than enough for an entry level position.
Tip 2 : Try and have a neat layout and highlight important points and achievements on your resume.
It was an online coding round which had 2 questions.



Query 1: 1 R index
Query 2: 1 C index
Query 3: 2 R index
Query 4: 2 C index
In each query, the first input is the type of the query, the second input is whether we have to consider the row ('R') or the column ('C') and the third input is the index of the row/column.
For each type 1 query, we need to flip the elements of the row/column having the given index.
For each type 2 query, we have to output the number of zeros present in the row/column having the given index.
Note that the matrix is a binary matrix, meaning that it only contains either 0 or 1.
Given M = 3, N = 3,
Queries : 1R1, 1R2, 2C1
So, in the above example the change in the matrix would look like this:

Next query 2C1 will return the count of the number of zeroes in the 1st column: 1



Consider 0 based indexing.
The next round was a debugging round. There were approximately 20 people in this round and all of us had to give this round simultaneously. 9 people were shortlisted from this round.
We were given a piece of code for concurrent file writes and sequential acknowledgments and as you would have judged from the name, it was an Operating System (OS) based round. We were each given a separate document with the problem statement and the code. We had to suggest changes and comment on what was wrong with the current code, why we thought that change should be there etc.
The first F2F interview was a DSA round. Initial 5 mins went in the introduction. Then I had to log in to the code pair link on hackerrank and the interviewer gave me a question. So the question had sort of like a common premise on which follow-up questions were asked.



I was asked to do a system design for Pastebin and a set of requirements were given which I had to fulfill.

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