Tip 1: Prepare DSA thoroughly, and I recommend Coding Ninjas for interview preparation.
Tip 2: Prepare well for your projects.
Tip 3: Be confident and relaxed during the interview.
Tip 1: Keep your resume concise and aim for one page only. Mention all the skills you are confident in.
Tip 2: Do not include false information on your resume.
40 MCQ-based questions were related to DSA and OOPS.
The test was divided into 2 sections, In section one there were 3 DSA questions with medium difficulty and In section 2, there were 2 DSA questions with hard difficulty.



Input: ‘S’ =’badam’
Output: ‘ada’
‘ada’ is the longest palindromic substring, and it can be proved that it is the longest possible palindromic substring.
By using Dynamic programming, I was able to solve.
The interviewer was very friendly, they asked 1 coding question and some oops SQL-related questions.


The simple idea of Kadane’s algorithm is to look for all positive contiguous segments of the array. By using Kadane's Algo Solved this problem.

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