In ServiceNow, the Application Picker is a tool that allows developers to select the active application scope. When an application is selected from the Application Picker, it sets the Application Scope to that application. This means that any configurations, scripts, or customizations made will be associated with the selected application's scope. Therefore, the correct answer is D.
The other options are incorrect:
A. Selecting Global in the Application Picker sets the Application Scope to Incident: Selecting "Global" sets the scope to the global application, not specifically to Incident.
B. Global is a reserved application which does not appear in the Application Picker: The Global application does appear in the Application Picker and can be selected.
C. Selecting an application from the Application Picker does not set the Application Scope: Selecting an application does set the Application Scope.
For more detailed information, refer to the official ServiceNow documentation on Application Scope.
Question 2
On a form, which type of field has this icon which can be clicked, to see a preview of the associated record?
Options:
A.
Reference
B.
Lookup
C.
Preview
D.
Quickview
E.
Drilldown
F.
Snapshot
Answer:
A
Question 3
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.
Options:
A.
Identify the table
B.
Script the function(s)
C.
Create a class
D.
Create a prototype object from the new class
Answer:
A
Explanation:
The step that does not belong when creating a Utils Script Include is identifying the table. A Script Include is a server-side script that can contain one or more classes or functions that can be reused by other scripts. It does not depend on a specific table, but can access any table through GlideRecord or other APIs. The other steps are part of creating a Script Include class and its prototype object. References: [ServiceNow Docs - Script Includes], [ServiceNow Docs - GlideRecord API]