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 Staff Software Engineer Interview Questions and Answers

Updated 26 Jul 2024

ServiceNow Staff Software Engineer Interview Experiences

1 interview found

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Pollyfill for .reduce & Promise
  • Ans. 

    Polyfill for .reduce & Promise

    • For .reduce polyfill, create a function that takes an array, a callback function, and an initial value as arguments

    • Inside the function, loop through the array and apply the callback function to each element, updating the accumulator

    • For Promise polyfill, create a function that takes a callback function with resolve and reject parameters

    • Inside the function, call the callback function with re...

  • Answered by AI
  • Q2. Two sum problem
  • Q3. Move all zero to end & design Google photos life application
  • Ans. 

    Move all zeros to end of array & design Google Photos life application

    • Iterate through the array and move all zeros to the end

    • Design a user-friendly interface for Google Photos life application

    • Implement features like automatic photo backup, organization, and sharing

    • Utilize machine learning for image recognition and categorization

  • Answered by AI
  • Q4. About last project. Strength & weakness, Why I left with offer?

Interview Preparation Tips

Topics to prepare for ServiceNow Staff Software Engineer interview:
  • Javascript
  • google photos
  • System Design
Interview preparation tips for other job seekers - Basic DS, Be prepared for Hiring manager they are quite moody. Other interviewers was friendly and helpful. HM look rude to me.

Skills evaluated in this interview

Staff Software Engineer Jobs at ServiceNow

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Reverse the linked list.
Round 2 - Technical 

(1 Question)

  • Q1. Internel working of Hashmap
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It included aptitude, technical and coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on SQL(Joins)
  • Q2. Questions on arrays, substrings
Round 3 - HR 

(2 Questions)

  • Q1. Location preferred
  • Ans. 

    Remote work preferred, open to occasional travel

    • Remote work preferred

    • Open to occasional travel

    • Flexible with location

  • Answered by AI
  • Q2. Family background
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Asked linq question and answered correctly with little modification, still was not impressed
  • Q2. Expections were little high.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the importance of manual testing when compared to automation testing
  • Ans. 

    Manual testing is important for exploratory testing, usability testing, and ad-hoc testing.

    • Manual testing allows for exploratory testing where testers can explore the application and identify unexpected issues.

    • Usability testing, which involves real users interacting with the software, is best done manually to capture user experience.

    • Ad-hoc testing, where testers randomly test the application without predefined test cas...

  • Answered by AI
  • Q2. Real life scenario on web application testing
  • Ans. 

    Testing a web application for an online shopping platform

    • Testing the functionality of adding items to the cart and checking out

    • Testing the payment gateway integration for secure transactions

    • Testing the search functionality to ensure accurate results are displayed

    • Testing the responsiveness of the website on different devices and browsers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If some one want to apply any of the job in this company then please do have some experience even though they mentioned for freshers bsc, however you do your interview as best as possible at last they gonna reject bsc of lack of experience. Same happened to me.So plzz only attened any Oracle company interview if you have experience.

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at K L E S Education College, Hubli and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was conducted online modh

Round 2 - Coding Test 

There were 3 codes given and had to choose 1 and write it down in pen paper mode

Round 3 - Technical 

(2 Questions)

  • Q1. Oops questions like encpuslation, abstraction
  • Q2. Os questions like paging, segmentation
Round 4 - HR 

(2 Questions)

  • Q1. Same basich hr questions introduce ur self
  • Q2. Why Visteon, and what do u know about Visteon
  • Ans. 

    Visteon is a leading global automotive supplier known for innovative technology solutions in the automotive industry.

    • Visteon is a well-established company with a strong reputation in the automotive industry.

    • They are known for their cutting-edge technology solutions for vehicle cockpit electronics.

    • Visteon has a global presence and works with major automotive manufacturers around the world.

    • The company focuses on developi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The company hr are friendly and easy to talk to I was not selected even though clearing all rounds so don't worry it happens.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected
Round 1 - Coding Test 

DSA round leetcode style question

Round 2 - Technical 

(1 Question)

  • Q1. Design + Coding round for rate limiter

Interview Preparation Tips

Interview preparation tips for other job seekers - Final round - System Design

ServiceNow Interview FAQs

How many rounds are there in ServiceNow Staff Software Engineer interview?
ServiceNow interview process usually has 1 rounds. The most common rounds in the ServiceNow interview process are Technical.
How to prepare for ServiceNow Staff 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, Unit Testing, Data Structures, Licensing and Object Oriented Design.
What are the top questions asked in ServiceNow Staff Software Engineer interview?

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

  1. Move all zero to end & design Google photos life applicat...read more
  2. Pollyfill for .reduce & Prom...read more
  3. Two sum prob...read more

Tell us how to improve this page.

ServiceNow Staff Software Engineer Interview Process

based on 1 interview

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
 • 897 Interviews
Amdocs Interview Questions
3.7
 • 531 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.1
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
View all
ServiceNow Staff Software Engineer Salary
based on 67 salaries
₹28 L/yr - ₹90 L/yr
43% more than the average Staff Software Engineer Salary in India
View more details

ServiceNow Staff Software Engineer Reviews and Ratings

based on 4 reviews

4.5/5

Rating in categories

2.7

Skill development

3.8

Work-life balance

4.4

Salary

3.7

Job security

4.1

Company culture

3.5

Promotions

2.5

Work satisfaction

Explore 4 Reviews and Ratings
Staff Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Staff Software Engineer

Hyderabad / Secunderabad,

Ahmedabad

8-13 Yrs

₹ 38-63 LPA

Staff Software Engineer_UI

Hyderabad / Secunderabad,

Ahmedabad

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
416 salaries
unlock blur

₹12.5 L/yr - ₹45 L/yr

Senior Software Engineer
324 salaries
unlock blur

₹20 L/yr - ₹65 L/yr

Technical Support Engineer
120 salaries
unlock blur

₹8 L/yr - ₹24.5 L/yr

Content Data Analyst
82 salaries
unlock blur

₹2.8 L/yr - ₹4.3 L/yr

Staff Software Engineer
67 salaries
unlock blur

₹28 L/yr - ₹90 L/yr

Explore more salaries
Compare ServiceNow with

Salesforce

4.1
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