Premium Employer

i

This company page is being actively managed by ServiceNow Team. If you also belong to the team, you can get access from here

ServiceNow Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

ServiceNow Software Engineer Interview Questions, Process, and Tips

Updated 14 Nov 2024

Top ServiceNow Software Engineer Interview Questions and Answers

  • Q1. Set Matrix Zeros Problem Statement Given an N x M integer matrix, if an element is 0, set its entire row and column to 0's, and return the matrix. Specifically, if a cel ...read more
  • Q2. Pythagorean Triplets Detection Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x 2 + y 2 = z 2 wi ...read more
  • Q3. K-th Smallest Element in BST Your task is to find the ‘K-th’ smallest element in a given Binary Search Tree (BST). Explanation: A Binary Search Tree is a binary tree in ...read more
View all 21 questions

ServiceNow Software Engineer Interview Experiences

13 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Coding problem of leetcode medium difficulty
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding problem of leetcode medium difficulty
Round 3 - One-on-one 

(1 Question)

  • Q1. One coding problem, and discussion on project, and job roles

I applied via Campus Placement and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Java , Oracle, Javascript
  • Q2. Javascript, Oracle (SQL), and java.
Round 3 - HR 

(2 Questions)

  • Q1. Administrators or maybe developers.
  • Q2. Developers , and Admin

Interview Preparation Tips

Topics to prepare for ServiceNow Software Engineer interview:
  • Tables
  • Incidents management
  • Problem Management
  • Records Procedures
  • Business rules
  • Reporting
  • UI policy
  • UI ACTION
  • Group
  • Application menus
  • Module
  • Servicenow
  • Servicenow fullform
Interview preparation tips for other job seekers - Javascript, (Servicenow ITSM developers)

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image Pratik Sahoo

posted on 31 Aug 2015

Interview Questionnaire 

21 Questions

  • Q1. AVL tree balance checking
  • Q2. Median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity
  • Ans. 

    Find median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity

    • Use binary search to find the partition point in both arrays

    • Calculate the median based on the partition point and array sizes

    • Adjust the partition points based on the median value

    • Repeat until the partition points are at the median

    • Handle edge cases such as empty arrays and uneven array sizes

  • Answered by AI
  • Q3. Strings Anagram in O(1) space complexity
  • Ans. 

    Anagram of strings in O(1) space complexity

    • Use a fixed size array of integers to store the frequency of characters in the first string

    • Iterate through the second string and decrement the frequency of each character in the array

    • If all the frequencies are zero, then the strings are anagrams

    • Return true or false accordingly

  • Answered by AI
  • Q4. Level order traversal of a tree using Queue
  • Ans. 

    Level order traversal of a tree using Queue

    • Create a queue and add the root node to it

    • While the queue is not empty, remove the front node and print its value

    • Add the left and right child nodes of the removed node to the queue

    • Repeat until the queue is empty

  • Answered by AI
  • Q5. Reverse level order traversal of a tree using Queue
  • Ans. 

    Reverse level order traversal of a tree using Queue

    • Create a queue and push the root node into it

    • While the queue is not empty, pop the front node and push its children into the queue

    • Add the popped node to a stack

    • Once the queue is empty, pop elements from the stack and print them

  • Answered by AI
  • Q6. BFS and DFS Difference
  • Ans. 

    BFS and DFS are graph traversal algorithms. BFS explores nodes level by level while DFS explores nodes depth by depth.

    • BFS uses a queue while DFS uses a stack or recursion.

    • BFS is optimal for finding shortest path while DFS is optimal for finding a path between two nodes.

    • BFS requires more memory as it stores all the nodes at each level while DFS requires less memory.

    • BFS can be used to find connected components while DFS

  • Answered by AI
  • Q7. OS Concepts – Starvation, Demand Paging, Virtual Memory, Deadlocks
  • Q8. Parenthesis Balance Checking
  • Q9. Three Jars - 1 with apples, 1 with oranges, 1 with apples and oranges. All of them wrongly labelled. Find min no of attempts to find the correct nature of boxes
  • Q10. Find product of each element of an array except that element in O(N) time complexity without using / operation
  • Ans. 

    Find product of each element of an array except that element in O(N) time complexity without using / operation

    • Use prefix and suffix products

    • Multiply prefix and suffix products for each element to get the final product

    • Handle edge cases where array has 0 or 1 element separately

  • Answered by AI
  • Q11. Recursively deleting linked list
  • Ans. 

    Recursively delete a linked list

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null, return

    • Recursively call the function with the next node as input

    • Delete the current node

  • Answered by AI
  • Q12. Recursively deleting linked list from end
  • Ans. 

    Recursively delete a linked list from the end.

    • Start from the head and recursively traverse to the end of the list.

    • Delete the last node and set the second last node's next pointer to null.

    • Repeat until the entire list is deleted.

    • Use a recursive function to implement the deletion process.

  • Answered by AI
  • Q13. Recursively deleting tree
  • Ans. 

    Recursively delete a tree by deleting all its child nodes and then the parent node.

    • Start from the leaf nodes and delete them first.

    • Then move up to the parent nodes and delete them.

    • Repeat until the root node is deleted.

    • Use post-order traversal to ensure child nodes are deleted before parent nodes.

  • Answered by AI
  • Q14. Recursively deleting from end
  • Ans. 

    Recursively delete elements from the end of an array.

    • Create a recursive function that removes the last element of the array.

    • Call the function recursively until the desired number of elements are removed.

    • Handle edge cases such as empty arrays and removing more elements than the array contains.

  • Answered by AI
  • Q15. Difference between Floyd Warshall and Djikstra
  • Ans. 

    Floyd Warshall finds shortest path between all pairs of vertices while Djikstra finds shortest path from a single source.

    • Floyd Warshall is used for dense graphs while Djikstra is used for sparse graphs.

    • Floyd Warshall has a time complexity of O(n^3) while Djikstra has a time complexity of O((n+m)logn).

    • Floyd Warshall can handle negative edge weights while Djikstra cannot.

    • Floyd Warshall can detect negative cycles while Dj

  • Answered by AI
  • Q16. Shortest path between 2 points in 2-D space in O(log N) time
  • Ans. 

    There is no known algorithm to find shortest path in 2-D space in O(log N) time.

    • The best known algorithm for finding shortest path in 2-D space is Dijkstra's algorithm which has a time complexity of O(N^2).

    • Other algorithms like A* and Bellman-Ford have better time complexity but still not O(log N).

    • If the points are on a grid, Lee algorithm can be used which has a time complexity of O(N).

  • Answered by AI
  • Q17. Design a system for putting newspapers using classes and functions taking different aspects into account
  • Ans. 

    Design a system for putting newspapers using classes and functions

    • Create a Newspaper class with attributes like title, date, and content

    • Create a Publisher class with methods to publish and distribute newspapers

    • Create a Subscriber class with methods to subscribe and receive newspapers

    • Use inheritance to create different types of newspapers like daily, weekly, etc.

    • Implement a database to store newspaper information and ha

  • Answered by AI
  • Q18. SQL commands
  • Q19. Career Prospects - Long Term Plans
  • Q20. Why not higher studies?
  • Ans. 

    I believe practical experience is more valuable than higher studies.

    • I have gained valuable experience through internships and projects.

    • I prefer hands-on learning and problem-solving over theoretical knowledge.

    • I am constantly learning and improving my skills through online courses and workshops.

  • Answered by AI
  • Q21. Machine Learning Concepts - Based on my projects

Interview Preparation Tips

Round: Test
Experience: All Computer Science Topics Covered: Data Structures, Algorithms, Object Oriented Systems, C, C++, Operating Systems, Computer Architectures, Databases, SQL, Basic Quantitative Aptitude
Tips: Solve all of them. Cut off's generally go high.
Duration: 30 minutes
Total Questions: 30

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly.
Tips: Do not fake yourself.

General Tips: Be thorough with all CS related concepts and projects.
Skill Tips: ""Be thorough.""
Skills: Algorithms, Data Structures, Operating Systems, Machine Learning, SQL, Operating Systems, Computer Architecture, Data Analytics
College Name: IIT Kharagpur
Motivation: Kind of application oriented work and the rising nature of the company. Obviously money also.
Funny Moments: Many funny questions and answers like did you have lunch, when did you last eat, etc

Skills evaluated in this interview

Software Engineer Jobs at ServiceNow

View all
Contribute & help others!
anonymous
You can choose to be anonymous

ServiceNow Interview FAQs

How many rounds are there in ServiceNow Software Engineer interview?
ServiceNow interview process usually has 2-3 rounds. The most common rounds in the ServiceNow interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for ServiceNow Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at ServiceNow. The most common topics and skills that interviewers at ServiceNow expect are Javascript, Licensing, Unit Testing, Data Structures and Object Oriented Design.
What are the top questions asked in ServiceNow Software Engineer interview?

Some of the top questions asked at the ServiceNow Software Engineer interview -

  1. Find product of each element of an array except that element in O(N) time compl...read more
  2. Design a system for putting newspapers using classes and functions taking diffe...read more
  3. Median of 2 sorted arrays in O(log N) time complexity and O(1) space complex...read more
How long is the ServiceNow Software Engineer interview process?

The duration of ServiceNow Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Blackrock

No Interviews

INTERVIEWS

Blackrock

No Interviews

SALARIES

Larsen & Toubro Limited

INTERVIEWS

Sanmina Sci

No Interviews

INTERVIEWS

Sanmina Sci

No Interviews

SALARIES

Gayatri Projects

LIST OF COMPANIES

Persistent Systems

Locations

SALARIES

Simplex Infrastructures

INTERVIEWS

Morgan Stanley

No Interviews

INTERVIEWS

Sanmina Sci

No Interviews

Tell us how to improve this page.

ServiceNow Software Engineer Interview Process

based on 10 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
View more
Join ServiceNow The world works with ServiceNow.
ServiceNow Software Engineer Salary
based on 388 salaries
₹12.1 L/yr - ₹48 L/yr
243% more than the average Software Engineer Salary in India
View more details

ServiceNow Software Engineer Reviews and Ratings

based on 34 reviews

4.4/5

Rating in categories

3.5

Skill development

4.6

Work-life balance

4.3

Salary

4.5

Job security

4.3

Company culture

4.0

Promotions

3.9

Work satisfaction

Explore 34 Reviews and Ratings
Software Engineer

Hyderabad / Secunderabad,

Ahmedabad

8-13 Yrs

Not Disclosed

Mgr, Software Engrg Mgmt

Hyderabad / Secunderabad,

Ahmedabad

2-5 Yrs

₹ 7.5-48 LPA

Manager, Software Engrg Mgmt - Frontend

Hyderabad / Secunderabad,

Ahmedabad

8-13 Yrs

Not Disclosed

Explore more jobs
Software Engineer
388 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
370 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
125 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Data Analyst
90 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Software Engineer
75 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ServiceNow with

Salesforce

4.0
Compare

Oracle

3.7
Compare

SAP

4.2
Compare

Microsoft Corporation

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview