Ho presentato la mia candidatura online. La procedura ha richiesto una settimana. Ho sostenuto un colloquio presso MobileCoderz nel mese di set 2023
Colloquio
I applied through the job portal and HR reached out to me to schedule a 1:1 Google Meet technical round. The process was smooth and the HR behaviour was very good as well as that of the interviewer.
Domande di colloquio [4]
Domanda 1
The questions started with the basics of React, its advantages/disadvantages, then moved to Redux, and then to JavaScript, how JavaScript works behind the scenes, how to multitask if JS is a single-threaded language, then also some questions included on the NextJS and why NextJS.
What will be the output of the following code: var bar = true; console.log(bar + 0); console.log(bar + "xyz"); console.log(bar + true); console.log(bar + false);
What will be the output of the following code: var Employee = { company: 'xyz' } var emp1 = Object.create(Employee); delete emp1.company console.log(emp1.company);