Which one of the following is true for a Script Include with a Protection Policy value of Protected?
Which one of the following is true for a Script Include with a Protection Policy value of Protected?A . Any user with the protected_edit role can see and edit the Script IncludeB . The Protection policy option can only be enabled by a user with the admin roleC . The...
What is the REST API Explorer used to do?
What is the REST API Explorer used to do?A . Practice using REST to interact with public data providersB . Find resources on the web for learning about RESTC . Convert SOAP Message functions to REST methodsD . Create sample code for sending REST requests to ServiceNowView AnswerAnswer: D Explanation:...
In an Email Notification, which one of the following is NOT true for the Weight field?
In an Email Notification, which one of the following is NOT true for the Weight field?A . Only Notifications with the highest weight for the same record and recipients are sentB . A Weight value of zero means that no email should be sentC . The Weight value defaults to...
The source control operation used to store local changes on an instance for later application is called a(n) <blank>.
The source control operation used to store local changes on an instance for later application is called a(n) <blank>.A . BranchB . TagC . StashD . Update setView AnswerAnswer: C Explanation: The source control operation used to store local changes on an instance for later application is called a stash....
Which one of the following is NOT required to link a ServiceNow application to a Git repository?
Which one of the following is NOT required to link a ServiceNow application to a Git repository?A . PasswordB . URLC . User nameD . Application nameView AnswerAnswer: D Explanation: The application name is not required to link a ServiceNow application to a Git repository. You only need to provide...
Which of the following statements does NOT apply when extending an existing table?
Which of the following statements does NOT apply when extending an existing table?A . The parent table’s Access Controls are evaluated when determining access to the new table’s records and fieldsB . The new table inherits the functionality built into the parent tableC . The new table inherits all of...
When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?
When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?A . Use the Choice data type to limit options in a fieldB . Use the Data data type to enter the date and time of day.C...
Which one of the following is the fastest way to create and configure a Record Producer?
Which one of the following is the fastest way to create and configure a Record Producer?A . Create a Catalog Category, open the category, and select the Add New Record Producer buttonB . Use the Record Producer module then add and configure all variables manuallyC . Open the table in...
Which of the following methods prints a message on a blue background to the top of the current form by default?
Which of the following methods prints a message on a blue background to the top of the current form by default?A . g_form.addInfoMsg()B . g_form.addInfoMessage()C . g_form.showFieldMessage()D . g_form.showFieldMsg()View AnswerAnswer: B Explanation: From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html g_form.showFieldMsg("field_name", "Hello World", "error"); Puts "Hello World" in an error message **below the specified field**. g_form.addInfoMessage()...
Which one of the following is NOT a method used for logging messages in a server-side script for a privately- scoped application?
Which one of the following is NOT a method used for logging messages in a server-side script for a privately- scoped application?A . gs.log()B . gs.error()C . gs.warn()D . gs.debug()View AnswerAnswer: A Explanation: gs.print() and gs.log() are older and not available in scoped applications, whereas gs.debug(), gs.info(), gs.warn(), gs.error() work...