Tip 1: Practice data structure questions as much as you can. Also, be confident in your solution during the interview. For practice, you can refer to Coding Ninjas.
Tip 2: Review previously asked questions from the company.
Tip 1: Keep it short. Mention the academic and professional projects you have completed. Include your educational details properly, along with the percentage or CGPA obtained.
Tip 2: Only include information in the resume that you are confident about and keep practicing.
This round was entirely focused on DSA, and the interviewer asked only basic DSA questions along with a few related to my resume.



Input: 'a' = [7, 12, 1, 20]
Output: NGE = [12, 20, 20, -1]
Explanation: For the given array,
- The next greater element for 7 is 12.
- The next greater element for 12 is 20.
- The next greater element for 1 is 20.
- There is no greater element for 20 on the right side. So we consider NGE as -1.


This round was challenging for me, as the DSA questions were quite difficult, and the interviewer set a specific time limit to complete each question.



[2,3,4] - median is 3.
[2,3] - median is floor((2+3)/2) = 2.



For arr[ ] = { 10, 20, 30, 40}, matrix A1 = [10 * 20], A2 = [20 * 30], A3 = [30 * 40]
Scalar multiplication of matrix with dimension 10 * 20 is equal to 200.

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?