Tip 1: Prepare well in Data Structures and Algorithms (DSA).
Tip 2: Stay confident and relaxed during the interview.
Tip 3: Review your projects thoroughly, understanding how they work and their functionalities.
Tip 1: Make your resume short and try to make it one page only. Mention all the skills that you are confident in.
Tip 2: Do not put false things on your resume.
The interviewer asked 2 Coding questions, which I was able to solve and also asked some DBMS queries.






Consider the maze below :
0 0 0
0 -1 0
0 0 0
There are two ways to reach the bottom left corner -
(1, 1) -> (1, 2) -> (1, 3) -> (2, 3) -> (3, 3)
(1, 1) -> (2, 1) -> (3, 1) -> (3, 2) -> (3, 3)
Hence the answer for the above test case is 2.



A pair ('ARR[i]', 'ARR[j]') is said to be an inversion when:
1. 'ARR[i] > 'ARR[j]'
2. 'i' < 'j'
Where 'i' and 'j' denote the indices ranging from [0, 'N').



Given ‘N’ = 4, ‘Q’ = 1.
Then the answer is 10 because the sum of all integers between 1 and 4 are 1, 2, 3, and 4. Hence 1 + 2 + 3 + 4 is equal to 10.

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