Tip 1: Build a project so you can explain it well in the interview.
Tip 2: Be consistent.
Tip 1: Make it ATS-friendly.
Tip 2: Add projects that you built.
It included a total of 12 topics:
JavaScript, React.js, Node.js, Aptitude, Reasoning, Git, HTML, CSS, MongoDB, English Grammar,DSA, Express.js



A = [2, 3, 0] , B = [5, 1]
For the first index, A[0] = 2
In array B only 1 is less than 2. Therefore the answer for the first index is 1.
For the second index, A[1] = 3
In array B only 1 is less than 3. Therefore the answer for the second index is also 1.
For the third index, A[2] = 0
Both the elements of array B are greater than 0.
Therefore the answer for the third index is 0.
Hence, the final answer is [1,1,0] in this case.
Read the problem statement carefully.
The interviewer was friendly.



You are given ‘ARR’ = [7, 2, 6, 10, 8] and ‘M’ = 2. We split the array as [ 7, 2, 6] and [10, 8], the maximum of 7 + 2 + 6 and 10 + 8 is 18, which is the minimum possible.
The interviewer asked me to optimise the solution.

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