Solicité el puesto a través de una agencia de empleo. El proceso duró 4 semanas. Acudí a una entrevista en ServiceNow (Bengaluru) en nov 2022
Entrevista
Four technical round , One manager round. Questions from leetcode and Cracking interview book. Friendly HR and Engineers. I was kept updated on all the progress and the complete process was wrapped in shorter time.
Preguntas de entrevista [4]
Pregunta 1
Implement Math.pow() method efficiently and the order of complexity with proof.
Solicité el puesto a través de un captador. Acudí a una entrevista en ServiceNow (Nueva Delhi) en ene 2026
Entrevista
Round 1 : Phone screening
Round 2 : Golang core questions and about concurrency questions
Round 3 : Kubernetes questions like architecture, controller, various scenario based questions.
Past projects architectures.
Envié una solicitud electrónica. El proceso duró 2 días. Acudí a una entrevista en ServiceNow en jul 2024
Entrevista
Not sure of how many rounds they interview. It actually depends on position they are hiring.
There might be 4 to 5 rounds of selection process along with HR discussion.
Preguntas de entrevista [1]
Pregunta 1
1. How to get child records of a Parent record if given with it's sys_id.
Child may contain more child records to it and should return all child records to the last level.
2. array has 'n' number of elements in it and you should print multiplication of those numbers excluding the number in first position in first iteration and second number in second iteration and so on..
ex: array has 1,2,3,4,5
it should print result in following way
2*3*4*5
1*3*4*5
1*2*4*5
1*2*3*4
3. create a text box with 0 as input by default on UI and create two buttons below as '+' , '-'.
When + is clicked, 0 in the text input should become 1 and keep on increasing upon multiple clicks.
When - is clicked, 0 should be decremented and so on..