Tip 1 : Practice as more as you can , I won't specify any number but be consistent.And
Tip 2 : Participate in short coding challenges .
Tip 3 : Do at least 2-3 good projects.
Tip 1 : Be confident of how to explain the things that you wrote in the resume . Do not put false stuff .
Tip 2 : Projects are a good highlight.
The test started at 4 in the afternoon. It was online coding test from home only.



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.
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.
Timing was 11 a.m. approximately. It was an online technical round.
Asked about the projects that I made , the technology I used there and why I used it. About the different portions involved. And what was my part in the project . Libraries used in the project .
Gave three different cases and i was supposed to give code for it.
I was given 5 questions in this area, like what is having used for , then he gave me a situation and asked to generate sql code for it.
This was the ProFit(Professional Fitment) Round to check if we are suitable for their company and if we find their company suitable for ourselves.
Timing was around p.m.
They asked about my projects and my contribution in the projects.
They asked about how my life went till now(school and college both) and what were the experiences that changed by life , if there was any.
This is one of the mostly asked question of why should the company hire you. This somehow shows if you are really interested to work in their company or not.
What are your capabilities and some other like this.
I were asked what will I do if I didn't get select. I replied of what came in mind and what I felt you should do the same too.
In this I were asked of why do I want to work in their company. I told all the details of how and what I like about them.
Timing was around 9 p.m.
What are your strengths?
Who is your role model?

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