J'ai postulé via une agence de recrutement. Le processus a pris 4 semaines. J'ai passé un entretien chez ServiceNow (Bengaluru) en nov. 2022
Entretien
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.
Questions d'entretien [4]
Question 1
Implement Math.pow() method efficiently and the order of complexity with proof.
J'ai postulé via un recruteur. J'ai passé un entretien chez ServiceNow (New Delhi) en janv. 2026
Entretien
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.
J'ai postulé en ligne. Le processus a pris 2 jours. J'ai passé un entretien chez ServiceNow en juil. 2024
Entretien
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.
Questions d'entretien [1]
Question 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..