Tip 1: Prioritize practicing previously asked interview questions as well as online test questions.
Tip 2: Ensure you have a strong understanding of Data Structures and Algorithms (DSA).
Tip 3: Develop at least two high-quality projects and ensure you understand every aspect of them thoroughly.
Tip 1: Include concise explanations of at least two impressive projects, covering all important points.
Tip 2: Ensure every skill is mentioned.
Tip 3: Emphasize skills, projects, and experiences prominently in your resume.
In this round, I was asked 2 DSA questions.



If two rows have the same number of 1’s, return the row with a lower index.
If no row exists where at-least one '1' is present, return -1.
Input: ‘N’ = 3, 'M' = 3
'ARR' =
[ [ 1, 1, 1 ],
[ 0, 0, 1 ],
[ 0, 0, 0 ] ]
Output: 0
Explanation: The 0th row of the given matrix has the maximum number of ones.



You are allowed to break the items.
If 'N = 4' and 'W = 10'. The weights and values of items are weights = [6, 1, 5, 3] and values = [3, 6, 1, 4].
Then the best way to fill the knapsack is to choose items with weight 6, 1 and 3. The total value of knapsack = 3 + 6 + 4 = 13.00
The second round was held on the same day. The interview started with my resume and projects. Then he asked me questions about the Operating System, puzzle, and DSA questions.



You need to modify the given tree only. You are not allowed to create a new tree.
For the given binary search tree

11 will be replaced by {15 + 29 + 35 + 40}, i.e. 119.
2 will be replaced by {7 + 11 + 15 + 29 + 35 + 40}, i.e. 137.
29 will be replaced by {35 + 40}, i.e. 75.
1 will be replaced by {2 + 7 + 11 + 15 + 29 + 35 + 40}, i.e. 139.
7 will be replaced by {11 + 15 + 29 + 35 + 40}, i.e. 130.
15 will be replaced by {15 + 29 + 35 + 40}, i.e. 104.
40 will be replaced by 0 {as there is no node with a value greater than 40}.
35 will be replaced by {40}, i.e. 40.
How do we measure forty-five minutes using two identical wires, each of which takes an hour to burn? We have matchsticks with us. The wires burn non-uniformly. So, for example, the two halves of the wire might burn in 10 minutes and 50 minutes respectively.
Tip 1: Do practice of previously asked questions.
Tip 2: Speak out what you are thinking.

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?