I applied through a recruiter. The process took 2 days. I interviewed at Kabra Logitech (Ahmedabad) in Feb 2021
Interview
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.
Interview questions [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
})();