Tip 1: Even if you are stuck on a problem, just give it a try. The interviewer will definitely help you for sure.
Tip 2: Prepare Data Structures and Algorithms well. They mostly assess our problem-solving ability to find solutions for real-world problems.
Tip 3: Be confident; don't be nervous. Maintain at least 2 projects on your resume.
Tip 1: Mention at least 2 projects.
Tip 2: Mention the skills in which you are perfect.
Tip 3: It should neither be too long nor too short.
It was in the morning. The first round was an online coding + MCQ round. It had three sections in total to be solved in 40 minutes. The questions were mainly from Data Structures, OS, DBMS, and SQL.



‘ROW1’ : [2, 5, 8, 17] and ‘ROW2’ : [1, 4, 8, 13, 20]
If ‘ROW1’ is [2, 5, 8, 17] and ‘ROW2’ is [1, 4, 8, 13, 20], then Ninja picks the first plates from each rows, plate containing 2 ladoos from ‘ROW1’ and a plate containing 1 ladoo from ‘ROW2’.
Then he gives the plate with 1 Ladoo to the first person in line and places the other plate back to its position.


Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.
Again, the DP concept and Sieve of Eratosthenes helped me solve this problem.
It was conducted in the evening, around 4:30 PM to 5:30 PM. The questions were a bit difficult. They were mainly from Data Structures, and there was a total of 2 questions.



You must write an algorithm whose time complexity is O(LogN)
Binary search implementation

Input: 'ARR' = [1, 2, 4, 4, 1, 2]
Output: true
We can split the above array like this: [1, 1], [4, 4], [2, 2]
In the three subsets, each of size two. And every subset contains the same elements.
Tried with Heap concept
It was in the evening. The interviewer first asked simple questions to keep me calm, and it was a nice interaction with her. The environment created by her was very interesting, which made it easy to answer.
Tip 1: Research the company thoroughly.
Tip 2: Avoid any kind of hesitation while answering.
Tip 3: Try to provide practical and optimized approaches that demonstrate professionalism.

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?