I applied through a recruiter. The process took 2 weeks. I interviewed at McAfee in Sep 2024
Interview
the first round is an online test with Coderpad and the second round is a technical panel with 3 people where they asked for javascript, es6, and aws concepts.
An interviewer had very little knowledge of JavaScript and Node.js. He didn’t know the answers to the questions he was asking. He gave me the wrong answers. Later, I showed him the correct answers through a live test. I am writing those questions here. Their evaluation method is very poor. They need to improve it.
Interview questions [1]
Question 1
'use strict';
var x = 5;
var y = 5;
function Operations(op1 = x, op2 = y) {
this.x = op1;
this.y = op2;
};
Operations.prototype.sum = () => this.x + this.y;
const op = new Operations(10, 20);
console.log(op.sum());