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

ServiceNow Interview Questions, Process, and Tips

Updated 11 Feb 2025

Top ServiceNow Interview Questions and Answers

View all 97 questions

ServiceNow Interview Experiences

Popular Designations

120 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Questions regarding DSA and java
  • Q2. Find if Linked list is circular
  • Ans. 

    Check if a linked list is circular by using two pointers moving at different speeds.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move slow pointer by one node and fast pointer by two nodes in each iteration.

    • If the fast pointer reaches the end of the list or meets the slow pointer, the list is circular.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. One more round on DSA on stack queues and trees

Skills evaluated in this interview

Top ServiceNow Senior Software Engineer Interview Questions and Answers

Q1. Explain event loop, what are different types of queues in event loop
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. All about Manual and core java concepts

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About project what are optimization you have done

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

SDE Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online coding test with 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. What is storage differnece for files in ram
  • Ans. 

    Files in RAM are stored temporarily for quick access by the CPU.

    • RAM (Random Access Memory) is volatile memory used for temporary storage of data and instructions.

    • Files stored in RAM are accessed much faster than files stored on a hard drive.

    • RAM is cleared when the computer is turned off, so files stored in RAM are not persistent.

    • Examples of files stored in RAM include open applications, running processes, and cached da

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions asked at other Companies

Q1. Longest Increasing SubsequenceFor a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly increasing order. Strictly Increasin... read more
View answer (5)

ServiceNow interview questions for popular designations

 Software Engineer

 (13)

 Senior Software Engineer

 (8)

 Technical Support Engineer

 (8)

 Product Manager

 (4)

 Software Developer

 (4)

 Senior Technical Support Engineer

 (3)

 Software Engineer Intern

 (3)

 Software Quality Engineer

 (3)

Developer Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Asked medium level DSA question

Interview Preparation Tips

Topics to prepare for ServiceNow Developer interview:
  • DSA
  • system Design
Interview preparation tips for other job seekers - Study DSA

Developer Interview Questions asked at other Companies

Q1. Which programming language do you use regular in work
View answer (2)

Get interview-ready with Top ServiceNow Interview Questions

Sales Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions about industry experience.
  • Q2. Questions about customer base.

Interview Preparation Tips

Topics to prepare for ServiceNow Sales interview:
  • review the annual report
  • ITIL

Sales Interview Questions asked at other Companies

Q1. Shall anyone should go for BDA Or Sales for Learning / Monetary benefit?
View answer (7)

Jobs at ServiceNow

View all

Director Interview Questions & Answers

user image Anonymous

posted on 13 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Case Study 

ITSM use case to reduce ticket count in a org. Gen AI use cases

Round 2 - Technical 

(1 Question)

  • Q1. Basic scripting Qs

Interview Preparation Tips

Interview preparation tips for other job seekers - Have knowledge on Snow

Director Interview Questions asked at other Companies

Q1. On what basis would you enhance the pipeline products of the company?
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Regression Testing?
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Performed after code changes to ensure that existing features still work correctly

    • Helps in identifying and fixing any defects introduced by new code changes

    • Automated tools like Selenium can be used for regression testing

    • Examples: Testing a login feature after adding a

  • Answered by AI

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write an algo for tower on hanoi in 7 steps
  • Ans. 

    The Tower of Hanoi is a classic problem that involves moving disks from one peg to another, following specific rules.

    • Start by moving the top n-1 disks from the source peg to the auxiliary peg.

    • Move the largest disk from the source peg to the target peg.

    • Move the n-1 disks from the auxiliary peg to the target peg.

    • Repeat the process recursively for the n-1 disks on the auxiliary peg.

    • Continue until all disks are moved to th

  • Answered by AI

Skills evaluated in this interview

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 cell has a value 0 (i.e., matrix[i][j] == 0), change all cells in the ith ... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Questions regarding CV Backround

Top ServiceNow Technical Support Engineer Interview Questions and Answers

Q1. How will you get the data in the table using js? what are the other ways to print the output? what is a block in js?
View answer (1)

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

ServiceNow Interview FAQs

How many rounds are there in ServiceNow 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 Coding Test.
How to prepare for ServiceNow 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 Licensing, Javascript, microsoft, Python and Unit Testing.
What are the top questions asked in ServiceNow interview?

Some of the top questions asked at the ServiceNow interview -

  1. Given a container and 3 shapes of balls small , medium , large using each type ...read more
  2. If a variable is protected in parent class and another variable with same name ...read more
  3. There are 9 balls one ball is lighter out of them and we have a balance how wou...read more
How long is the ServiceNow interview process?

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

Tell us how to improve this page.

ServiceNow Interview Process

based on 117 interviews

Interview experience

4
  
Good
View more
Join ServiceNow The world works with ServiceNow.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 902 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.0
 • 272 Interviews
Adobe Interview Questions
3.9
 • 251 Interviews
VMware Software Interview Questions
4.4
 • 157 Interviews
View all

ServiceNow Reviews and Ratings

based on 382 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

4.1

Salary

4.1

Job security

4.1

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 382 Reviews and Ratings
Pipeline - Principal Platform Architect

Mumbai

12-15 Yrs

Not Disclosed

Product Success Manager

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Sr Software Quality Engineer

Hyderabad / Secunderabad,

Ahmedabad

6-10 Yrs

₹ 16-28.5 LPA

Explore more jobs
Software Engineer
414 salaries
unlock blur

₹12.9 L/yr - ₹48 L/yr

Senior Software Engineer
344 salaries
unlock blur

₹16 L/yr - ₹65 L/yr

Technical Support Engineer
121 salaries
unlock blur

₹8 L/yr - ₹24.5 L/yr

Content Data Analyst
89 salaries
unlock blur

₹2.8 L/yr - ₹4.1 L/yr

Staff Software Engineer
76 salaries
unlock blur

₹26 L/yr - ₹88.5 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