Tip 1: Prepare the Striver Sheet thoroughly.
Tip 2: Focus on core CS fundamentals.
Tip 3: Practice at least 2 questions every day.
Tip 1: Include strong projects in your resume.
Tip 2: Maintain and showcase your online coding profiles.
In the OA, there were 60 MCQs based on aptitude, CS fundamentals and DSA. Then there were 2 coding problems.
You need to find max number of elements in list with out duplicates and also return sorted list with out duplicates.
Ex1:arr=[1, 22,11,22,5,6]
Output: [5, [1, 5,6,11,22]]


1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.
Chose between Heap Sort and Merge Sort with reasoning. (Learn)



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Tip 1: First brute-force solution.
Tip 2: Next optimal.
Write a SQL query to find the 2nd highest salary. (Practice)
Questions were mainly on projects and star principles.
Explained Company Policy and Work Culture. STAR Questions. Asked about college life and JEE preparation.

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