Upload Button Icon Add office photos
Engaged Employer

i

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

Deloitte Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Deloitte Servicenow Developer Interview Questions and Answers

Updated 7 Aug 2024

Deloitte Servicenow Developer Interview Experiences

3 interviews found

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

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Case Management Questions
  • Q2. Scripting Questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. Difference between CI and asset? 2. How to call script include from client side? 3. Diff. between record producer and Service Catalog? 4. Write script to create new records in User table?
  • Ans. 

    Answers to interview questions for ServiceNow Developer position.

    • CI (Configuration Item) represents a single, manageable component of an IT infrastructure.

    • Asset is a tangible or intangible item that is owned by an organization.

    • To call a script include from the client side, use the 'g_form' object and the 'getScript' method.

    • Record producer is used to create new records in a specific table, while Service Catalog is a col...

  • Answered by AI

Skills evaluated in this interview

Servicenow Developer Interview Questions Asked at Other Companies

asked in Wipro
Q1. How do you calculate the time an incident is assigned to multiple ... read more
asked in Wipro
Q2. What is the difference between a service catalog, an order guide, ... read more
asked in Infosys
Q3. Write code to auto-close a parent incident when all child inciden ... read more
asked in Wipro
Q4. How can you populate the manager field using server-side code?
asked in Infosys
Q5. Can we hide the hamburger (Context menu chooser) for a user?

Interview Questionnaire 

1 Question

  • Q1. Workflow activity

Interview Preparation Tips

Interview preparation tips for other job seekers - Please practice scripting instead of learning

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. SQL Queries
  • Q2. OOPS Concepts
  • Q3. Program to calculate factorial
  • Q4. Projects- Major , Minor , Internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, should have good communication skills.

Skills evaluated in this interview

What people are saying about Deloitte

View All
wiseshirataki
Verified Icon
3d
works at
Microsoft Corporation
Offer joining confusion
I have an offer from Deloitte India (as a Deputy Manager - Enterprise Security) and Novartis (Specialist - Microsoft Sentinel). I hear a lot of negative feedback about the work culture of Deloitte India while there is not so much positivity about Novartis as well. Can someone working at these orgs share their thoughts? I have also heard there is quite a lot of travel required in Deloitte India, if someone has similar or even opposing thoughts, please share.
Got a question about Deloitte?
Ask anonymously on communities.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This test consists of two coding questions and some MCQ regarding computer fundamentals.

  • Q1. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Find total distinct card types and common card types between two packs of cards.

    • Create a set to store distinct card types when combining both packs.

    • Iterate through each pack and add card types to the set.

    • Find the intersection of card types between the two packs to get common card types.

  • Answered by AI
  • Q2. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through all possible allocations of books to students.

    • Calculate the maximum number of pages assigned to a student for each allocation.

    • Return the minimum of these maximums as the result.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was a technical round that is based on DSA and computer fundamentals.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria10- above 60% 12- ABove 60 percentZS Associates interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, OOPS, Operating System , System DesignTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.

Application resume tips for other job seekers

Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

What are the roles & responsibilities of a Servicenow Developer at Deloitte?

Technical Development

  • Design, develop, test, deploy and maintain ITSM solutions on ServiceNow platform
  • Create and configure ServiceNow applications for new and existing implementations

Read full roles & responsibilities

Interview Questionnaire 

1 Question

  • Q1. What are the differences between component event and application event?
  • Ans. 

    Component events are fired and handled by a single component, while application events are fired and handled by multiple components.

    • Component events are used for communication between components within a single application.

    • Application events are used for communication between components across multiple applications.

    • Component events are fired using fireEvent() method, while application events are fired using $A.get('e.n...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview was good.
There were two rounds and all are fron the areas that I have worked

Skills evaluated in this interview

Deloitte HR Interview Questions

714 questions and answers

Q. Tell me about your previous internship experience.
Q. Can you describe your technical skills?
Q. Did you manage individual projects?
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. They asked questions from string manipulation.even though i answered all most every questions,they rejected me.
  • Ans. 

    String manipulation involves various operations like searching, replacing, and formatting strings in programming.

    • Concatenation: Joining two strings, e.g., 'Hello' + ' World' = 'Hello World'.

    • Substring: Extracting part of a string, e.g., 'Hello'.substring(1, 4) = 'ell'.

    • Searching: Finding a character or substring, e.g., 'Hello'.indexOf('e') = 1.

    • Replacing: Changing parts of a string, e.g., 'Hello'.replace('e', 'a') = 'Hall...

  • Answered by AI
  • Q2. Questions from computer Networking
  • Q3. They are using chatgpt so before you go, search basic questions on your domain
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Random questions of maths

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - hirevue 

(2 Questions)

  • Q1. On demand video assessment that include questions to answer.
  • Q2. Games designed to test different ability.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on Java , C++ , OOPs, cloud computing, one coding question, regarding previous projects, some behavioural questions.

Deloitte Interview FAQs

How many rounds are there in Deloitte Servicenow Developer interview?
Deloitte interview process usually has 1 rounds. The most common rounds in the Deloitte interview process are Technical.
How to prepare for Deloitte Servicenow Developer 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 Deloitte. The most common topics and skills that interviewers at Deloitte expect are Javascript, Troubleshooting, Agile, Automation and CAD.
What are the top questions asked in Deloitte Servicenow Developer interview?

Some of the top questions asked at the Deloitte Servicenow Developer interview -

  1. 1. Difference between CI and asset? 2. How to call script include from client s...read more
  2. Workflow activi...read more
  3. Case Management Questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Deloitte Servicenow Developer Salary
based on 252 salaries
₹6 L/yr - ₹14 L/yr
40% more than the average Servicenow Developer Salary in India
View more details

Deloitte Servicenow Developer Reviews and Ratings

based on 12 reviews

3.9/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.7

Salary

3.5

Job security

3.6

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 12 Reviews and Ratings
Consultant
41.8k salaries
unlock blur

₹10.4 L/yr - ₹21.7 L/yr

Senior Consultant
25.8k salaries
unlock blur

₹16.3 L/yr - ₹33.6 L/yr

Analyst
17.1k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Assistant Manager
11.6k salaries
unlock blur

₹12.1 L/yr - ₹22.4 L/yr

Manager
8.2k salaries
unlock blur

₹24.6 L/yr - ₹44 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.7
Compare

PwC

3.3
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
write
Share an Interview