Tip 1 : Prepare algorithms and data structures.
Tip 2 : Java foundations have to be clear.
Tip 3 : Practice writing clean code before the interview.
Tip 1 : Highlight important skills
Tip 2 : Have some projects on resume.
It was an online coding round which has MCQs for aptitude and logical reasoning, and two programming questions with choice of programming language being Java.



Up: (x, y) -> (x - 1, y)
Left: (x, y) -> (x, y - 1)
Down: (x, y) -> (x + 1, y)
Right: (x, y) -> (x, y + 1)
consider the binary matrix below. If source = (0, 0) and destination = (3, 4), the shortest path from source to destination has length 11.




If we are given an array ARR=[1,2,3] then the power set P(ARR) of the set ARR is: [ [], [1], [2], [1,2], [3], [1,3], [2,3], [1,2,3] ]
For every subset 'X' present in power set P(ARR) of set ARR, X must be sorted i.e. in the example above:
P1(ARR) = [ [], [1], [2], [1,2], [3], [1,3], [2,3], [1,2,3] ]
P2(ARR) = [ [], [1], [1,2,3], [2], [1,2], [3], [1,3], [2,3] ]
P3(ARR) = [ [], [1], [2], [1,2], [3], [1,3], [2,3], [2,3,1] ]
P1(ARR) and P2(ARR) will be considered correct power sets but P3(ARR) will not be considered correct because there the last subset [2, 3, 1] is not sorted.
It was a face to face interview round, where I was asked questions about each and everything that I had mentioned in my CV.
Tell us about your project.
What challenges did you face while developing the project?
Tell us about your previous work experiences.

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