Me postulé en línea. Acudí a una entrevista en ServiceNow (Bengaluru) en jul 2020
Entrevista
Applied through online. It was an easy interview. The interviewer was easy and cool. mainly was javascript basic questions. like primitive and non-primitive data types etc. Applied for service now Hyderabad and interview was on zoom call.
3. What will be the console.log statements print
const obj = {
name: 'Billy',
sing: function () {
this.age = "20"
console.log('a' , this);
var anotherFunction = function() {
this.age = "30"
console.log('b', this);
}
anotherFunction();
}
}
obj.sing(); //first console will print properties of obj(name, age and sing) and second will print window object
4.
abc();
function abc() {
console.log("1");
}
function abc() {
console.log("2");
}
function abc() {
console.log("3");
}
//it will execute the last function statements.
5.
var x;
(function test() {
console.log('x --'+ x);
})(); //this is self invoking so print undefine because x is not assigned any value yet
var y = function() {
console.log('In y' + x); //function is not called from anywhere so this wont execute
}
another(); //this will call function another written below
var x = 10;
console.log(x); //will print 10 because x is assigned value 10
function another() {
console.log(x); //will print undefine because x is not assigned any value yet
}
Me postulé a través de una recomendación de un empleado. Acudí a una entrevista en ServiceNow (Hyderabad) en nov 2025
Entrevista
They asked me two medium-level DSA questions—one related to operations on two matrices and another focused on flattening a nested object. After completing those, they also asked conceptual and practical questions about debouncing and its real-world use cases in JavaScript.
Me postulé en línea. El proceso tomó 1 día. Acudí a una entrevista en ServiceNow (San Diego, CA) en abr 2025
Entrevista
Two interviewers in a casual online setting, where we went over some of the basics of the job and then did a tech test involving navigating JSON data using javascript.
Preguntas de entrevista [1]
Pregunta 1
How to navigate a simple data structure with javascript.
It was an technical interview, and the interviewer had a lot to ask on backend. There were questions on Data structures and algorithms, which I dont think is much relevant for a front end role