Tip 1 : Soft skills are the key
Tip 2 : Resume should be representable
Tip 3 : Do projects
Tip 1 : Resume should be representable
Tip 2 : You should be thorough with everything you mention on the resume
It was a 90 minutes MCQ + coding test. There were 15 MCQs and 3 coding questions. I remember only one.



1. In lexicographical order cell (r1, c1) comes before cell (r2, c2) if either r1 < r2 or (r1 = r2 and c1 < c2).
2. If there is no possible path, then return a list with a single element [-1, -1].
3. It is guaranteed that cell (0, 0) is not blocked.
Consider the following 3*4 grid -:
[
[0 0 0 0]
[1 1 0 0]
[0 1 1 0]
]
There are two possible paths to reach cell (2, 3) from (0, 0).
Path-1 -> [[0, 0], [0, 1], [0, 2], [0, 3], [1, 3], [2, 3]]
Path-2 -> [[0, 0], [0, 1], [0, 2], [1, 2], [1, 3], [2, 3]]
Clearly, Path-1 is lexicographically smaller than Path-2.
Thus we should return list [[0, 0], [0, 1], [0, 2], [0, 3], [1, 3], [2, 3]]
It was 90 minutes coding test that consisted of 3 coding questions. I remember only one.


You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.
It was held in the afternoon from 2 pm onwards. It was of 30 minutes
They majorly asked question from project work.
Why should we hire you?
Tip 1 : Be thorough with your CV
Tip 2 : Be confident about your project work
Tip 3 : Don't lie in the resume

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: