I applied through a recruiter. I interviewed at Codemonk (Bengaluru) in Nov 2021
Interview
1. Codemonk uses talpoint for recruiting
2. got a call from recruiter that my cv was selected
3. had a google meet interview
4. i was asked to share the screen
5. below questions were asked
6. recruiter was okkish with the answers that i gave.
Interview questions [1]
Question 1
1.givena an array rotate a matrix
2. hoisting
3. closures
4. var let const difference
5. react life cycle
6. class vs hooks
7. pure component
8. redux
9. middle ware
10. redux thunk
11. why we use middle ware
12. get the output of below
(function(){
setTimeout(()=> console.log(1),2000);
console.log(2);
setTimeout(()=> console.log(3),0);
console.log(4);…