Tip 1 : Coding must be Intermediate+
Tip 2 : Must have good knowledge of DP.
Tip 1 : Write whatever you know, never fake it.
Tip 2 : Always mention atleast 1 project.
There were total 3 sections in exam:-
1. Aptitude (Logical Ability, Quantitative Ability, Verbal Ability) -> 48 minutes
2.Written Communication Test (Essay Writing) -> 20 minutes
3.Coding Test (2 Questions) – Candidates can choose any one of these programming languages for the online programming test: Java, C, C++, or Python. -> 60 minutes



1. All the elements are in the range 0 to N - 1.
2. The elements may not be in sorted order.
3. You can return the duplicate elements in any order.
4. If there are no duplicates present then return an empty array.
I used simple XOR approach and got all the testcases passed.



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.
Used Backtracking and got all the test cases passed.
It happened online and the duration was 30 minutes.
It was basic Technical Interview.
They gave bank data. It was asked to Fetch all the employees that never had a loan.
Tip 1 : Read SQL queries also for interview.
Tip 2 : Only CRUD Operations are not enough.
Tip 3 : Try to solve, whether you know exact solution or not.
It was very basic round that was taken just to welcome all whoever selected as there was not even a single rejection after this round.
Interviewer was very nice.
Tell Me about Yourself.
How would you rate yourself on a scale of 1 to 10 in Coding?
What is your biggest achievement so far?
Are you ready for relocation?
Tip 1 : Always have a best Yourself speech.
Tip 2 : Be in confidence.
Tip 3 : Always have a smile on face.

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?