Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

1.

What are UI policies?

Answer»

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.

2.

What do you mean by the term impersonating a user and in what ways do you find it useful?

Answer»

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.

3.

What do you mean by data lookup and record matching?

Answer»

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.

4.

What is the right approach to get the details of the current logged in users in the ServiceNow at client script?

Answer»

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...
}
});

5.

What is the full form of CMDB and what is it?

Answer»

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)

6.

What is a record producer?

Answer»

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.

7.

What is the difference between Salesforce and ServiceNow?

Answer»
SalesForceServiceNow
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 preferredIt is less preferred.
It is easy for data inputting and data accessingIt is easy for app building.
Audit TRAIL is supportedAudit Trail is not supported.
8.

What is the use of HTML Sanitizer?

Answer»

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.

9.

What is Performance Analytics in ServiceNow?

Answer»

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.

10.

What is the BSM Map?

Answer»

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.

11.

What do you mean by Metrics in ServiceNow?

Answer»

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.

12.

What type of searches are available in ServiceNow

Answer»
  • Global text SEARCH- Used to FIND records in MULTIPLE tables.
  • Navigation FILTER- Used to filter the items in the navigator of the application.
  • Search Screens- It is used to search for records in a table.
  • Knowledge base- Used to find knowledge ARTICLES.
13.

What are Gauges?

Answer»

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.