J'ai postulé via un recruteur. Le processus a pris 2 jours. J'ai passé un entretien chez Kabra Logitech (Ahmedabad) en févr. 2021
Entretien
The interview process at Kabra Logitech consists of two rounds: an initial HR round to evaluate personality and communication, followed by a 20–30 minute Technical interview to assess job-related skills and knowledge.
Questions d'entretien [1]
Question 1
What will be the output of the following JavaScript code and why?
let a = 10;
(function() {
console.log(a); // Line 1
let a = 20;
console.log(a); // Line 2
})();