I applied through college or university. I interviewed at ServiceNow (Nueva Delhi) in Dec 2019
Interview
There were 4 rounds
Round 1- Data Structures and Algorithm (questions on array, trees, do), DBMS and OS
Round 2- OOPs concepts, A couple of coding questions and brief discussion about what sets ServiceNow apart, the values and work environment and how those align with mine
Round 3&4- six to seven coding questions were asked involving DS Algo using concepts of Linked list, Trees, bit-manipulation, DP and Trees.
Interview questions [1]
Question 1
I was asked to give a class structure for a movie ticket booking website
I applied through college or university. The process took 1 day. I interviewed at ServiceNow (Hyderabad) in Jul 2018
Interview
The interview was mostly technical in nature. It covered all the topics from ds,daa ,dbms,CN and full stack app development.Above all knowing puzzles is also a huge plus.Also, one should know how few services like tiny url, gmail's smart compose etc are implemented.There were also some system design questions.
Interview questions [1]
Question 1
How do you a design a system which would a day trader a maximum profit on a single day with
data coming in on demand?
I applied through college or university. The process took 1 day. I interviewed at ServiceNow (Hyderabad) in Jul 2018
Interview
ServiceNow visited our campus for recruitment. There was a written test initially which covered basic computer science questions, including OS,DBMS and some programming language related questions and few on aptitude. Out of this 25 students were shortlisted for interviews. I had to two technical round interviews and a HR discussion. The number of rounds varied for people, maximum being 4 technical rounds.
Interview questions [1]
Question 1
Given a binary tree, I was asked to print the nodes in all the vertical levels.
1
/ \
2 3
/ \ / \
4 5 6 7
You were supposed to print
4
2
1 5 6
3
7
He was expecting a O(n) solution.