I applied online. I interviewed at Informatica (Bengaluru) in May 2019
Interview
It was quiet good, didn't take much time. They selected only shortlisted candidates. Around 25 people were there at that time. But the panel is with high attitude because of him they are going to loose good candidates, he himself describing definition for everything in JavaScript and expecting the candidates to say the same.
Interview questions [1]
Question 1
What is the out put for the following code
var x;
var y = function() {
return {
z: 10,
x: function () {
console.log('x');
}
};
}
y();
x();