Tip 1: Prepare DSA well; I recommend Coding Ninjas for interview preparation.
Tip 2: Be confident and relaxed during the interview.
Tip 3: Review your projects, including how they work and their functionalities.
Tip 1: Keep your resume concise and try to limit it to one page. Mention only the skills you are confident in.
Tip 2: Do not include false information on your resume.
It was an easy to medium round with 3 coding questions and 15 MCQs. However, I faced some issues with the platform and was able to log in 30 minutes late.



By using Dynamic Programming
In Technical Interview Round 1, The Interviewer asked some DBMS, SQL related questions and 1 Coding Question and Basic HR types of questions.



Output the sum modulo 10 ^ 9 + 7.
If ‘X’ = 1, ‘Y’ = 1 and ‘Z’ = 0 then the output will be 84.
Explanation : 3 + 4 + 34 + 43 = 84
By using recursion and backtracking able to solve this problem.
In the technical interview round 2, the interviewer asked questions related to Python, my projects, DBMS, and one puzzle problem. I wasn't able to solve the puzzle and felt a bit nervous at that time, which led to my rejection.



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').
By using the Merge sort variation, I solved it.

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?