Tip 1 : Focus More on JavaScript and ReactJS.
Tip 2 : Prepare your project well.
Tip 3 : Practice DSA in a regular manner.
Tip 1 : Have some good projects based on the MERN stack.
Tip 2 : Share your coding profile in your resume.
The interviewer is very helpful during the interview. They provide me right hints which help a lot to solve questions.
find the output of the below code.for (var i=0;i< 5;i++){ setTimeout(()=>{ console.log(i); })}
By using knowledge of callback queue and event loop. I was able to solve the question.
Output-
5
5
5
5
5
find the output of the below code.for (let i=0;i< 5;i++){ setTimeout(()=>{ console.log(i); })}
Using knowledge of the set timeout method l was able to solve the question.
Output-
0
1
2
3
4



what is deadlock?
Tip 1 : First tell the definition of deadlock.
Tip 2 : give a real-life example of deadlock.
Tip 3 : Also tell how to avoid deadlock.
The second is mainly focussed on data structure and algorithms and Puzzles.



The start time of one chosen meeting can’t be equal to the end time of the other chosen meeting.
'N' = 3, Start = [1, 3, 6], End = [4, 8, 7].
You can organize a maximum of 2 meetings. Meeting number 1 from 1 to 4, Meeting number 3 from 6 to 7.
There are four-person A, B, C, and D who wants to cross a weak bridge at the night. They have one torch with them. Person A, B, C, and D take 1,2,5, and 8 minutes respectively to cross the complete bridge. At a time, only 2 persons can walk on the bridge.
In what minimum time all persons can cross the bridge and how?
Tip 1 : Allow 2 faster persons to cross the bridge. So, 1 faster person can get the torch back quickly. and 1 can
stay at another end.
Tip 2 : Allow 2 slower persons to cross the bridge and get the faster person to stay at the other end to the back.
Tip 3 : Allow 2 faster people now to cross the bridge. This way they can cross in minimum time.
Answer- 15 minutes.

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