CORRECT Answers
When creating new application files in a scoped application, cross scope access is turned on by
default in which of the following:
-Script Include
-Table
-Workflow
-REST messages? - CORRECT ANSWER - Table
Which objects can be used in Inbound Action Scripts?
-Current,
-Previous,
-Email,
-Event,
-Producer? - CORRECT ANSWER - Email
Event
Current
One of the uses of the ServiceNow REST API explorer is?
-Practice using REST to interact with public data providers
-Convert SOAP Message functions to REST methods
-Create sample code for sending REST requests to ServiceNow
-Find resources on the web for learning about REST - CORRECT ANSWER - Create
Sample code for sending REST requests to ServiceNow
How to see what scripts, reports, and other application artifacts will be present in a published
application:
-Open the artifact records individually to verify the value in the Application field
,-Examine the Application Files Related List in the application to be published
-Enter the name of the application in the global search field
-Open the list of Update Sets for the instance - CORRECT ANSWER - -Examine the
Application Files Related List in the application to be published
Which one of the following is a list of Link types: - CORRECT ANSWER - Hint: SLAT
Separator, Assessment, List of Records, Timeline Page
Which of the following is NOT a method used for logging messages in a server-side script for a
privately scoped application?
-gs.warn()
-gs.debug()
-gs.log()
-gs.error() - CORRECT ANSWER - gs.log
Which one of the following is NOT a purpose of application scoping? a) Provide controls for
how scripts from another scope can alter tables in a scoped application
b) Provide a namespace (prefix and scope name) to prevent cross application name collisions
c) Provide a relationship between application artifacts
d) Provide a way of tracking the user who developed an application - CORRECT
ANSWER - Provide a way of tracking the user who developed an application
Identify the incorrect statement about delegated development in ServiceNow: a) Administrators
can grant non-admin users the ability to develop global applications
b) Administrators can grant the developer access to security records
c) Administrators can grant the developer access to script fields
d) Administrators can specify which application types the developer can access - CORRECT
ANSWER - -Admins can grant non-admin users the ability to develop global applications
, Which one of the following client-side scripts apply to Record Producers? a) Client Scripts and
UI Policies
b) UI Scripts and Record Producer Scripts
c) Catalog Client Scripts and Catalog UI Policies
d) UI Scripts and UI Actions - CORRECT ANSWER - -Catalog Client Scripts and Catalog
UI Policies
Which one of the following is part of the client-side scripting API?
-workflow.scratchpad
-current and previous objects
-GlideUser object (g_user)
-GlideSystem object (gs) - CORRECT ANSWER - GlideUser object (g_user)
Which of the following methods are useful in Access Control script?
-g_user.hasRole() and current.is.New()
-gs.hasRole() and current.isNew()
-g_user.hasRole() and current.isNewRecord()
-gs.hasRole() and current.isNewRecord() - CORRECT ANSWER - g.hasRole and
current.isNewRecord()
Hint: no user, small, small, capital, capital
Which one of the following returns true if the currently logged in user has the admin role in a
server-side script?
-gs.hasRoleExactly('admin')
-g_form.hasRoleExactly('admin')
-g_form.hasRole('admin') - CORRECT ANSWER - -gs.hasRole('admin')
Which of the following are true for reports in ServiceNow? a) All users can generate reports on
any table