Upload Button Icon Add office photos

Filter interviews by

Fujitsu Servicenow Developer Interview Questions and Answers

Updated 28 May 2022

Fujitsu Servicenow Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Regarding General ServiceNow Functionality and Scenario based Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study from YouTube and Now Learning portal.

Interview questions from similar companies

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Types of business rules with example
  • Ans. 

    There are three types of business rules in ServiceNow: client scripts, server scripts, and UI policies.

    • Client scripts run on the client side and are used to perform actions on form fields or execute scripts when a form is loaded, saved, or deleted.

    • Server scripts run on the server side and are used to perform actions on records when they are inserted, updated, or deleted.

    • UI policies are used to set mandatory, read-only,...

  • Answered by AI
  • Q2. How to add approval in flow designers.
  • Ans. 

    To add approval in flow designers, use the 'Approval' activity and configure the approval settings.

    • Drag and drop the 'Approval' activity onto the flow designer canvas

    • Configure the approval settings such as approvers, conditions, and notifications

    • Connect the 'Approval' activity to the relevant steps in the flow

    • Test the flow to ensure the approval process works correctly

  • Answered by AI
  • Q3. Difference between UI policy and data policy
  • Ans. 

    UI policy controls the behavior of fields on a form, while data policy controls the data that can be entered into fields.

    • UI policy is used to set mandatory, read-only, or visible conditions on form fields

    • Data policy is used to enforce data validation rules on form fields

    • UI policy is client-side, while data policy is server-side

    • Example: UI policy can make a field read-only when a certain condition is met, while data pol...

  • Answered by AI
  • Q4. Difference between client side script and server side script.
  • Ans. 

    Client side scripts run on the user's browser, while server side scripts run on the server.

    • Client side scripts are executed on the user's browser, providing immediate feedback without needing to communicate with the server.

    • Server side scripts are executed on the server, allowing for secure processing of sensitive data and operations.

    • Client side scripts are written in languages like JavaScript, while server side scripts

  • Answered by AI
  • Q5. Write a code to show last 10 incident created in background script
  • Ans. 

    Code to display last 10 incidents in background script

    • Query incident table to get last 10 records

    • Use GlideRecord to fetch incident records

    • Sort records by created date in descending order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for basics first

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Proejcts you have done
  • Ans. 

    Developed a service portal for IT ticketing system

    • Created custom widgets for user-friendly interface

    • Integrated with ServiceNow API for ticket management

    • Implemented role-based access control for different user types

  • Answered by AI
  • Q2. Difference bw catalog item and record producer
  • Ans. 

    Catalog item is a predefined item in the service catalog, while record producer allows users to create custom records.

    • Catalog item is predefined and created by admins, while record producer allows users to create custom records

    • Catalog items are used to request services or products, record producers are used to create records in tables

    • Catalog items have predefined variables and workflows, record producers allow users to

  • Answered by AI
  • Q3. What are macros
  • Ans. 

    Macros are automated scripts that can be used to perform repetitive tasks in Servicenow.

    • Macros in Servicenow are used to automate tasks and reduce manual effort.

    • They can be used to update multiple records at once, send notifications, or perform calculations.

    • Macros can be triggered manually or automatically based on certain conditions.

    • Example: Creating a macro to automatically close all resolved incidents in Servicenow.

  • Answered by AI
  • Q4. How to get logged in user details in form
  • Ans. 

    Use GlideUser class to get logged in user details in a form

    • Use GlideUser class to get the current user's details

    • Access user details like name, email, roles, etc. using GlideUser methods

    • Example: var user = gs.getUser(); var userName = user.getName();

  • Answered by AI
  • Q5. Is javascript synchronous language?
  • Ans. 

    Yes, JavaScript is a synchronous language.

    • JavaScript is single-threaded, meaning it can only execute one piece of code at a time.

    • It follows a top-down execution flow, where each line of code is executed in order.

    • Asynchronous behavior can be achieved using callbacks, promises, and async/await.

    • Example: setTimeout function in JavaScript delays the execution of a function.

    • Example: Fetch API in JavaScript allows making asyn

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. About your work experience
  • Q2. Basic Knowledge on your module
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself and your day to day activities in Servicenow?
  • Q2. Business rule and their types?
  • Ans. 

    Business rules are server-side scripts that run when a record is displayed, inserted, updated, deleted, or when a table is queried.

    • Business rules are used to automate processes and enforce data consistency.

    • There are three types of business rules: before, after, and asynchronous.

    • Before business rules run before the database action is executed.

    • After business rules run after the database action is executed.

    • Asynchronous bu...

  • Answered by AI
  • Q3. Scenario based questions.
Round 2 - HR 

(1 Question)

  • Q1. Basic questions asked by hr
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the different between =, ==, ===?
  • Ans. 

    The different between =, ==, === is related to assignment, equality, and strict equality in programming.

    • = is used for assignment in programming languages.

    • == is used for equality comparison, it checks if two values are equal.

    • === is used for strict equality comparison, it checks if two values are equal in both value and data type.

  • Answered by AI
  • Q2. Writ a quay that should retrieve all the the columns but show only 10 records and ordered by name
  • Ans. 

    Use SQL query to retrieve all columns, show only 10 records, and order by name

    • Use SELECT * to retrieve all columns

    • Use LIMIT 10 to show only 10 records

    • Use ORDER BY name to order the results by name

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 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 - Technical 

(3 Questions)

  • Q1. They have asked all about my project experience and the projects I have worked and the gave a scenario to used flow designer to build the flow.
  • Q2. What all project You have worked on?
  • Q3. What have you been working from in your 4 years experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident and explain the experience in your project
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. BR and types, CR and types, SJ
  • Q2. Service Catalog

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well your concepts
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Business rules scanario
  • Q2. Field need to automate which rule apply
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions from ITSM, CMDB and Integrations.
Round 2 - One-on-one 

(2 Questions)

  • Q1. This was managerial round
  • Q2. Real time and scenario based questions, leadership roles and so on.

Interview Preparation Tips

Interview preparation tips for other job seekers - Both rounds were cleared, all documents shared, but after 2 months of continuously reaching out to them got to know that BGV is not cleared.
No one was answerable for it, neither reachable or given clarity of whats going on.

Fujitsu Interview FAQs

How many rounds are there in Fujitsu Servicenow Developer interview?
Fujitsu interview process usually has 1 rounds. The most common rounds in the Fujitsu interview process are Technical.
How to prepare for Fujitsu 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 Fujitsu. The most common topics and skills that interviewers at Fujitsu expect are ITSM, Javascript, Business process, CSM and Change Management.

Tell us how to improve this page.

People are getting interviews through

based on 1 Fujitsu interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Fujitsu Servicenow Developer Salary
based on 77 salaries
₹2.5 L/yr - ₹12.4 L/yr
At par with the average Servicenow Developer Salary in India
View more details

Fujitsu Servicenow Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

4.4

Work-Life balance

4.4

Salary & Benefits

4.4

Job Security

5.0

Company culture

4.4

Promotions/Appraisal

5.0

Work Satisfaction

Explore 2 Reviews and Ratings
Technical Service Engineer
1.1k salaries
unlock blur

₹2.8 L/yr - ₹16 L/yr

Application Developer
974 salaries
unlock blur

₹2.8 L/yr - ₹14.8 L/yr

Assistant Application Developer
597 salaries
unlock blur

₹2.3 L/yr - ₹7.7 L/yr

Assistant Technical Service Engineer
567 salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Associate Application Developer
508 salaries
unlock blur

₹4.3 L/yr - ₹16.5 L/yr

Explore more salaries
Compare Fujitsu with

Accenture

3.9
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview