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 Consultant Interview Questions and Answers

Updated 16 Sep 2024

8 Interview questions

A Servicenow Consultant was asked 9mo ago
Q. Write a script to ensure a request can only be submitted if 10 PDF attachments are present and all attachments are PDFs.
Ans. 

Script to ensure 10 PDF attachments are required for request submission in ServiceNow.

  • Use a Business Rule to validate attachments before submission.

  • Check the number of attachments using 'current.attachment' API.

  • Loop through attachments to ensure all are PDFs using 'getContentType()' method.

  • Example: If 'current.attachment.size() != 10', show error message.

  • Example: If any attachment's content type is not 'applicatio...

A Servicenow Consultant was asked 10mo ago
Q. What are different ways we can implement REST APIs integration?
Ans. 

Different ways to implement REST APIs integration

  • Using HTTP methods like GET, POST, PUT, DELETE

  • Using authentication methods like OAuth, API keys

  • Using webhooks for real-time data updates

  • Implementing rate limiting to prevent abuse

  • Leveraging API gateways for security and monitoring

  • Using API documentation tools like Swagger or Postman

Servicenow Consultant Interview Questions Asked at Other Companies

asked in Deloitte
Q1. What are the 3 factors that you would discuss with the client bef ... read more
asked in Infocenter
Q2. Tell me about yourself Difference between Java and JavaScript Rec ... read more
asked in Deloitte
Q3. What is the syntax for including a mail script in a notification ... read more
asked in Deloitte
Q4. What are different ways we can implement REST APIs integration?
asked in Deloitte
Q5. How do you substitute record values/links in the mail body?
A Servicenow Consultant was asked 10mo ago
Q. What is the syntax for including a mail script in a notification body?
Ans. 

Syntax for including Mail Script in a notification body

  • Use ${mail_script} to include the Mail Script in a notification body

  • Ensure the Mail Script is properly formatted and enclosed in ${}

  • Example: Hello, ${mail_script} is the Mail Script for this notification

A Servicenow Consultant was asked 10mo ago
Q. What are ACLs?
Ans. 

ACLs (Access Control Lists) are permissions that define what users or groups can access or modify specific resources in a system.

  • ACLs are used to control access to data and functionality within a system.

  • They are typically defined at the object level and specify which users or groups have access to perform certain actions.

  • ACLs can be set to restrict or allow read, write, create, delete, or execute permissions.

  • For e...

What people are saying about Deloitte

View All
an associate2
6d
Deloitte USI ASA2 or RSM USI SA1: Which way to go?
I'm at PwC AC as an Associate 2 with 2 yrs of PQE. Is it smart to join Deloitte USI Assurance as ASA2 (30% Hike)? Won't I be overqualified for that level? I also have an SA1 offer from RSM USI with the same pay (34% hike). Plus, I'm expecting a 10% raise at PwC by July end. Thoughts?
Got a question about Deloitte?
Ask anonymously on communities.
A Servicenow Consultant was asked 10mo ago
Q. Describe an email script scenario you have encountered.
Ans. 

Email scripts in ServiceNow automate notifications and responses based on specific conditions.

  • Use 'gs.email' to send emails programmatically.

  • Example: gs.email('recipient@example.com', 'Subject', 'Body');

  • Utilize 'current' object to access record fields in email notifications.

  • Example: 'Hello ' + current.u_name + ', your request has been processed.'

  • Implement conditions to customize email content based on record state...

A Servicenow Consultant was asked 10mo ago
Q. What is the order of execution of ACLs?
Ans. 

The order of execution of ACLs is determined by the sequence number assigned to each ACL rule.

  • ACL rules are executed in numerical order based on the sequence number assigned to them.

  • Lower sequence numbers are executed before higher sequence numbers.

  • If multiple ACL rules have the same sequence number, the order of execution is determined by the order in which they were created.

  • ACL rules with a sequence number of 10...

A Servicenow Consultant was asked 10mo ago
Q. What are the 3 factors that you would discuss with the client before implementing something in ServiceNow?
Ans. 

The 3 factors to discuss with a client before implementing something in ServiceNow

  • Understand the client's specific requirements and goals

  • Assess the impact on existing processes and systems

  • Discuss the timeline, budget, and resources needed for implementation

Are these interview questions helpful?
A Servicenow Consultant was asked 10mo ago
Q. How do you substitute record values/links in the mail body?
Ans. 

Substitute record values/Link in the mail body using placeholders.

  • Use placeholders in the mail body template to substitute record values or links.

  • Retrieve the record values or links from the database or API.

  • Replace the placeholders with the actual values before sending the email.

Deloitte Servicenow Consultant Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(9 Questions)

  • Q1. Give me a Brief Introduction about you ?
  • Ans. 

    I am a dedicated and experienced Servicenow Consultant with a strong background in IT service management.

    • Over 5 years of experience implementing and customizing Servicenow solutions

    • Proficient in ITIL processes and best practices

    • Skilled in configuring workflows, forms, and reports

    • Strong communication and problem-solving skills

    • Certified in Servicenow Administration and Implementation

  • Answered by AI
  • Q2. Elaborate more on your current role and responsibilities ?
  • Ans. 

    I am currently working as a Servicenow Consultant responsible for implementing and customizing Servicenow solutions for clients.

    • Designing and implementing Servicenow modules based on client requirements

    • Customizing workflows, forms, and reports in Servicenow platform

    • Providing technical support and training to end users

    • Collaborating with cross-functional teams to ensure successful implementation

    • Participating in project p...

  • Answered by AI
  • Q3. Order of Execution of ACLs ?
  • Ans. 

    The order of execution of ACLs is determined by the sequence number assigned to each ACL rule.

    • ACL rules are executed in numerical order based on the sequence number assigned to them.

    • Lower sequence numbers are executed before higher sequence numbers.

    • If multiple ACL rules have the same sequence number, the order of execution is determined by the order in which they were created.

    • ACL rules with a sequence number of 10000 o...

  • Answered by AI
  • Q4. What are ACLs ?
  • Ans. 

    ACLs (Access Control Lists) are permissions that define what users or groups can access or modify specific resources in a system.

    • ACLs are used to control access to data and functionality within a system.

    • They are typically defined at the object level and specify which users or groups have access to perform certain actions.

    • ACLs can be set to restrict or allow read, write, create, delete, or execute permissions.

    • For exampl...

  • Answered by AI
  • Q5. What is the Syntax for including the Mail Script in a notification body ?
  • Ans. 

    Syntax for including Mail Script in a notification body

    • Use ${mail_script} to include the Mail Script in a notification body

    • Ensure the Mail Script is properly formatted and enclosed in ${}

    • Example: Hello, ${mail_script} is the Mail Script for this notification

  • Answered by AI
  • Q6. Email Script Scenario based question ?
  • Ans. 

    Email scripts in ServiceNow automate notifications and responses based on specific conditions.

    • Use 'gs.email' to send emails programmatically.

    • Example: gs.email('recipient@example.com', 'Subject', 'Body');

    • Utilize 'current' object to access record fields in email notifications.

    • Example: 'Hello ' + current.u_name + ', your request has been processed.'

    • Implement conditions to customize email content based on record state.

    • Exam...

  • Answered by AI
  • Q7. How to substitute record values/Link in the mail body ?
  • Ans. 

    Substitute record values/Link in the mail body using placeholders.

    • Use placeholders in the mail body template to substitute record values or links.

    • Retrieve the record values or links from the database or API.

    • Replace the placeholders with the actual values before sending the email.

  • Answered by AI
  • Q8. What are different ways we can implement REST APIs integration ?
  • Ans. 

    Different ways to implement REST APIs integration

    • Using HTTP methods like GET, POST, PUT, DELETE

    • Using authentication methods like OAuth, API keys

    • Using webhooks for real-time data updates

    • Implementing rate limiting to prevent abuse

    • Leveraging API gateways for security and monitoring

    • Using API documentation tools like Swagger or Postman

  • Answered by AI
  • Q9. ACL Scenario based questions
Round 2 - Behavioral 

(4 Questions)

  • Q1. Brief introduction about you ?
  • Ans. 

    I am a highly skilled Servicenow Consultant with 5+ years of experience in implementing and customizing Servicenow solutions.

    • 5+ years of experience in Servicenow implementation and customization

    • Strong knowledge of IT service management processes

    • Certified Servicenow Administrator and Developer

    • Experience in integrating Servicenow with other systems such as Jira and Salesforce

  • Answered by AI
  • Q2. Notable Achievements you have had till date ?
  • Ans. 

    Implemented ServiceNow ITSM solution for a Fortune 500 company resulting in 30% increase in efficiency.

    • Led a team in successfully implementing ServiceNow ITSM solution for a Fortune 500 company

    • Achieved a 30% increase in efficiency through the implementation

    • Received recognition from senior management for the successful project completion

  • Answered by AI
  • Q3. What are the difficulties you have faced in your current organization project ?
  • Ans. 

    One of the difficulties I faced in my current project was inadequate communication among team members.

    • Lack of clear communication led to misunderstandings and delays in project delivery

    • Team members were not aligned on project goals and priorities

    • Difficulty in coordinating tasks and dependencies due to poor communication

    • Challenges in resolving issues and making decisions without effective communication

  • Answered by AI
  • Q4. Why do you want to leave your current company ?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Looking for a new challenge to further develop my skills and knowledge.

    • Interested in exploring new technologies and methodologies that my current company does not offer.

    • Seeking a company culture that aligns better with my values and career goals.

  • Answered by AI
Round 3 - Behavioral interview 

(4 Questions)

  • Q1. Brief introduction on yourself
  • Ans. 

    Experienced Servicenow Consultant with 5+ years of implementing and optimizing ITSM solutions for various clients.

    • Implemented ITSM solutions for Fortune 500 companies

    • Expertise in Service Catalog, Incident Management, and Change Management modules

    • Certified in Servicenow Administration and Development

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. How do you explain your client about the application who is not technically strong ?
  • Ans. 

    I would use simple and non-technical language to explain the application to the client.

    • Start by understanding the client's level of technical knowledge

    • Avoid using jargon and technical terms

    • Use analogies or real-life examples to explain complex concepts

    • Provide hands-on demonstrations or visual aids if possible

    • Encourage the client to ask questions and clarify any doubts

  • Answered by AI
  • Q3. What are the 3 factors that you would discuss with the client before implementing something in ServiceNow ?
  • Ans. 

    The 3 factors to discuss with a client before implementing something in ServiceNow

    • Understand the client's specific requirements and goals

    • Assess the impact on existing processes and systems

    • Discuss the timeline, budget, and resources needed for implementation

  • Answered by AI
  • Q4. Explain about the integrations you have worked on in your current/previous Project ?
  • Ans. 

    I have worked on integrations with various third-party tools such as JIRA, Slack, and Azure DevOps.

    • Integrated ServiceNow with JIRA for seamless issue tracking

    • Implemented integration between ServiceNow and Slack for real-time notifications

    • Established integration between ServiceNow and Azure DevOps for streamlined development processes

  • Answered by AI
Round 4 - HR 

(5 Questions)

  • Q1. Brief Introduction on yourself ?
  • Ans. 

    Experienced Servicenow Consultant with a background in IT service management and process automation.

    • Over 5 years of experience implementing Servicenow solutions for various clients

    • Skilled in configuring and customizing Servicenow modules such as Incident, Problem, Change, and Service Catalog

    • Strong understanding of ITIL framework and best practices

    • Certified Servicenow System Administrator and Implementation Specialist

    • Ex...

  • Answered by AI
  • Q2. Why do you wanna leave your current Organization ?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Looking for a new challenge to further develop my skills and knowledge

    • Interested in exploring new technologies and methodologies

    • Seeking opportunities for career advancement and growth

    • Want to work in a more collaborative and innovative environment

  • Answered by AI
  • Q3. What are your location preference ?
  • Ans. 

    I am open to relocation for the right opportunity.

    • Open to relocation for the right opportunity

    • Flexible with location preferences

    • Willing to consider different locations

  • Answered by AI
  • Q4. What is your LWD (last working day) ?
  • Ans. 

    My LWD is 30th September 2021.

    • My last working day is on 30th September 2021.

    • I will be transitioning out of my current role by the end of September.

    • I have already informed my current employer about my LWD.

  • Answered by AI
  • Q5. Finally Salary Negotiation with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge on generic artifacts in ServiceNow,
good to have certifications,
Strong communications and presentation skills,
Know the market

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Create script for request can be submitted only if 10 pdfs are attached and all are pdf only
  • Ans. 

    Script to ensure 10 PDF attachments are required for request submission in ServiceNow.

    • Use a Business Rule to validate attachments before submission.

    • Check the number of attachments using 'current.attachment' API.

    • Loop through attachments to ensure all are PDFs using 'getContentType()' method.

    • Example: If 'current.attachment.size() != 10', show error message.

    • Example: If any attachment's content type is not 'application/pdf...

  • Answered by AI
  • Q2. Created application

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2022. 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 tips
Round 2 - One-on-one 

(1 Question)

  • Q1. SQL query, data science and statistics questions, scenario based questions, guestimates and puzzles.
Round 3 - One-on-one 

(1 Question)

  • Q1. Power BI round: how to design dashboard? dax query, how to do schedule refresh?
  • Ans. 

    Designing a Power BI dashboard involves creating a visually appealing layout, writing DAX queries to retrieve data, and scheduling refreshes.

    • Identify the key metrics and KPIs to display on the dashboard

    • Choose appropriate visualizations to represent the data

    • Write DAX queries to retrieve and manipulate data

    • Create calculated columns and measures to perform calculations

    • Set up data refresh schedules to ensure the dashboard ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and composed and just prepare well and give your best.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Case Study 

Internal case of a biscuit manufacturing company. Details about company background, sales, figures are given and based on those 3 questions were asked.

Round 2 - Case Study 

Part 2 of the same case study was asked where the company should go for IPO or expansion in local market. based on the facts, decision and justification had to be given

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is key for this job. Even if the background is not an exact match they are willing to give you a shot if you think you are better.

What people are saying about Deloitte

View All
an associate2
6d
Deloitte USI ASA2 or RSM USI SA1: Which way to go?
I'm at PwC AC as an Associate 2 with 2 yrs of PQE. Is it smart to join Deloitte USI Assurance as ASA2 (30% Hike)? Won't I be overqualified for that level? I also have an SA1 offer from RSM USI with the same pay (34% hike). Plus, I'm expecting a 10% raise at PwC by July end. Thoughts?
Got a question about Deloitte?
Ask anonymously on communities.

I applied via Approached by Company and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic devops question
  • Q2. Agile process discussion
Round 2 - Technical 

(2 Questions)

  • Q1. Kubernetes deployment
  • Q2. Ansible basic question
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion with HR manager
  • Q2. Negotiation salary with HR manager

Interview Preparation Tips

Topics to prepare for Ernst & Young Consultant interview:
  • Devops
Interview preparation tips for other job seekers - 1st round is technical, 2nd round tech with manager 3rd is HR round for salary discussion

I applied via Approached by Company and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Flip card using html and javascript. Angular lifecycle hooks.output of few programs
Round 2 - Technical 

(1 Question)

  • Q1. Component communication in angular.position properties in css.flex model questions.difference between flex and grid.z-index in css.center content in div place header in top and footer in bottom
Round 3 - Behavioral 

(1 Question)

  • Q1. Asked about company and where its located reason for change.
Round 4 - One-on-one 

(1 Question)

  • Q1. Negotiations and rolled out offer letter next day joined after 2 days

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics they ask about angular html5 css3
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Approached by Company and was interviewed before Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Case Study 

This is confidential cannot be declared here

Round 3 - Technical 

(2 Questions)

  • Q1. Details of labour law
  • Q2. Details of ehs laws on various organisations
  • Ans. 

    EHS laws vary by industry and location, but generally require organizations to comply with regulations related to environmental protection, workplace safety, and health.

    • EHS laws are designed to protect the environment and ensure the safety and health of workers.

    • Organizations must comply with federal, state, and local regulations, which can vary by industry and location.

    • Examples of EHS laws include the Clean Air Act, th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident that is all you require and read before you go
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Group Discussion 

Gig economy, 15 min, online

Round 2 - HR 

(3 Questions)

  • Q1. How do u fit in KPMG
  • Ans. 

    I see myself fitting into KPMG by leveraging my analytical skills and collaborative mindset to drive impactful solutions for clients.

    • Analytical Skills: My background in data analysis enables me to identify trends and insights that can help KPMG's clients make informed decisions.

    • Collaborative Mindset: I thrive in team environments, as demonstrated in my previous role where I led a cross-functional team to deliver a proj...

  • Answered by AI
  • Q2. Why should we hire you
  • Q3. Tell me about yourself
Round 3 - Technical 

(2 Questions)

  • Q1. Project management related question
  • Q2. Risk related question
Round 4 - One-on-one 

(1 Question)

  • Q1. Stress ingerview with the partner where he will check your knowledge and your ability to handle stress

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and take it as a normal conversation you are having with a colleague. Communication skills matter a lot and the domain knowledge will help you stir through

I applied via LinkedIn and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Just go thoroughly through JD and your resume
Round 2 - One-on-one 

(1 Question)

  • Q1. More on behavioral aspect. Be positive
Round 3 - HR 

(1 Question)

  • Q1. Generic discussion and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident. Eye to eye contact and pleasant smile on face will help you wherever you go

I applied via Walk-in and was interviewed in Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interview details in short for PwC Sdc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was based on Proper knowledge of Accounts basics as well as good english where you need to answer for select which word describes the better statement and you will have to write the official mail regarding how to write and email to you Tax manager asking for some important documents for filing and income tax for the client there would be a trail balance and you need to prepare a final Accounts it's simple as well as there would be some of question based on Previous year assessments year , depreciation, amortization, income heads etc please be prepared about excel basic

Deloitte Interview FAQs

How many rounds are there in Deloitte Servicenow Consultant interview?
Deloitte interview process usually has 2-3 rounds. The most common rounds in the Deloitte interview process are Technical, HR and Behavioral.
How to prepare for Deloitte Servicenow Consultant 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 GRC, ITSM and csd.
What are the top questions asked in Deloitte Servicenow Consultant interview?

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

  1. What are the 3 factors that you would discuss with the client before implementi...read more
  2. What is the Syntax for including the Mail Script in a notification bod...read more
  3. What are different ways we can implement REST APIs integratio...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

4-6 weeks 100%
View more

Interview Questions from Similar Companies

PwC Interview Questions
3.3
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.4
 • 844 Interviews
ZS Interview Questions
3.3
 • 475 Interviews
BCG Interview Questions
3.7
 • 203 Interviews
Bain & Company Interview Questions
3.9
 • 111 Interviews
WSP Interview Questions
4.2
 • 99 Interviews
Mercer Interview Questions
3.6
 • 89 Interviews
View all
Deloitte Servicenow Consultant Salary
based on 45 salaries
₹11.6 L/yr - ₹21.3 L/yr
25% more than the average Servicenow Consultant Salary in India
View more details

Deloitte Servicenow Consultant Reviews and Ratings

based on 3 reviews

3.4/5

Rating in categories

4.1

Skill development

2.8

Work-life balance

3.4

Salary

4.4

Job security

2.8

Company culture

3.4

Promotions

3.4

Work satisfaction

Explore 3 Reviews and Ratings
Consultant
40k salaries
unlock blur

₹10 L/yr - ₹21.5 L/yr

Senior Consultant
24.8k salaries
unlock blur

₹16.6 L/yr - ₹33.3 L/yr

Analyst
16.6k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Assistant Manager
11.3k salaries
unlock blur

₹12.1 L/yr - ₹22 L/yr

Manager
7.9k salaries
unlock blur

₹24.6 L/yr - ₹43.7 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