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...
Which one of the following is true for a table with the “Allow configuration” Application Access option selected?
Which one of the following is true for a table with the “Allow configuration” Application Access option selected?A . Only the in scope application’s scripts can create Business Rules for the tableB . Any user with the application’s user role can modify the application’s scriptsC . Out of scope applications...
How many applications menus can an application have?
How many applications menus can an application have?A . 3, one for an application’s user modules, one for an application’s administrator modules, and one for the ServiceNow administrator’s modulesB . As many as the application design requiresC . 2, one for an application’s user modules and one for an application’s...
Which class is NOT part of the Client side scoped APIs?
Which class is NOT part of the Client side scoped APIs?A . GuideDialogWindowB . GuideAjexC . GuideRecordD . GuideFormView AnswerAnswer: C Explanation: This class allows you to create and manipulate dialog windows on the user interface. You can use this class to display messages, forms, or custom HTML content in...