I applied through a staffing agency. The process took 4 weeks. I interviewed at ServiceNow (Bengaluru) in Nov 2022
Interview
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.
Interview questions [4]
Question 1
Implement Math.pow() method efficiently and the order of complexity with proof.
I applied through a recruiter. I interviewed at ServiceNow (New Delhi) in Jan 2026
Interview
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.
I applied online. The process took 2 days. I interviewed at ServiceNow in Jul 2024
Interview
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.
Interview questions [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..