Me postulé a través de una agencia de empleos. El proceso tomó más de 1 semana. Acudí a una entrevista en Pyxis (Bengaluru) en sep 2020
Entrevista
I receive an opportunity for Angular JS Developer at Pyxis AI Technology Team – A Hyper-localized Customer Acquisition Wing of Absentia Virtual Reality.
Round 1 - Coding Test
Round 2 - Technical Interview
Round 3 - HR/Managerial
Round 1 was difficult where you have to solve multiple choice questions.
I was selected up to round 2. then they did responded through email, which normally recruiter doesn't really does.
Sharing you the round 2 questions for job seeker candidate for preparation.
Preguntas de entrevista [8]
Pregunta 1
Implement createBase function, which is left empty?
const createBase = function(num){
// please code here
}
// so that code works
const addSix = createBase(6);
addSix(6); // should return 12
addSix(4); // should return 10
addSix(1); // should return 7