If you are looking for a job in Service Now you come on the right page. Every year there are lots of opportunities throughout the world from many companies. And this profession has a market share of 0.7%, so you have chances to make your career in Service now. Keeping all these things in mind we have collected the most frequently asked ServiceNow Interview Questions which can help you in achieving your dream job. Let’s have a look at these questions and brush up on your concepts quickly.
Here in this article, we will be listing frequently asked ServiceNow Interview Questions and Answers with the belief that they will be helpful for you to gain higher marks. Also, to let you know that this article has been written under the guidance of industry professionals and covered all the current competencies.
Service Now is popular because of its capability of solving problems and managing everything as a service. It has managed workflow which gives support and allows service domains to define their services, delivery of services, gives assurance of service availability, and also analyzes the interaction between people and resource sharing.
HTML Sanitizer helps in removing the unwanted code and protects the code against security factors such as scripting attacks. It works by validating the built-in white list for markup that one always wants to protect.
SalesForce | ServiceNow |
---|---|
It supports platforms like the windows phone app. | Android and iPhone app are supported by ServiceNow |
The cost begins at $75 for 30 days. | The cost begins at $100 for 30 days. |
It is more preferred | It is less preferred. |
It is easy for data inputting and data accessing | It is easy for app building. |
Audit Trail is supported | Audit Trail is not supported. |
It is a type of catalog item which allows users specifically end-users to create task-based records. The record producer generates records such as incident records instead of the requested items.
Configuration Management Database refers to CMDB. CMDB acts as a data warehouse that stores information related to all technical services. This information related to each service is stored in a CI (Configuration Item)
Assuming the database name of the ServiceType field is "u_servicetype", this should work: var gr = new GlideRecord('sys_user');
gr.get(g_user.userID);
var svcType = gr.u_serviceType;
Note that this might have a slight UI delay since gr.get is doing synchronous AJAX call. You can do it asynchronously with a gr.query and a callback function, as:
var gr = new GlideRecord('sys_user');
gr.addQuery('sys_id',g_user.userID);
gr.query(function(user){
if(user.u_servicetype=="CMS"){
return;
} else {
// all the rest of your code...
}
});
Data Lookup- It is a drop-down field in a form that references an external data source and allows the user to load data into the form quickly.
Record Matching- This feature enables the executives to determine the rules which are being automatically set on single or multiple values of the fields when predefined conditions are met.
Impersonating a user means a user can temporarily sign in to a network as a different user. If a user has full impersonation permissions he can impersonate all users of that network and can do anything. This feature of Service now is used in testing and helps other users in troubleshooting the problems by logging in to it.
UI Policies are the same as Client Scripts which governs the form and its field behavior. It changes information on a form dynamically and controls flow for tasks. UI policies are used to set mandatory fields.
An inactivity monitor helps in triggering an event for a task that has not been updated in a defined period. And if the task remains inactive for a longer duration then the monitor repeats at regular intervals.
A gauge is a kind of a widget that is based on a report and can be put on content or homepage. These are used to contain graphical content in ServiceNow.
They are used to record and measure the path of individual records. It increases the effectiveness of the IT management process.
Example- A metric can measure the incident resolution by measuring the time to resolve that incident.
BSM Map refers to the Business Service Management map and is used to display the Configuration Items graphically.
All information related to them one can be found in the parent table for BSM-related tables i.e. cmdb_ci.
Performance Analytics is a kind of application that allows users to take screenshots of data at particular intervals and help them to create a series for any KPI.