Multiple questions Flashcards
Which of the following are configured in an Email Notification?
a) Who will receive the notification.
b) What content will be in the notification
c) When to send the notification
d) How to send the notification
a) Who will receive the notification.
b) What content will be in the notification
c) When to send the notification
. To see what scripts, reports, and other application artifacts will be in a published application:
a) Enter the name of the Global search field
b) Open the list of Update Sets for the instance
c) Examine the Application Files Related list in the application to be published
d) Open the artifact records individually to verify the value in the Application field
b) Open the list of Update Sets for the instance
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
a) All access to this table via web services
b) Can create, Can update, and Can delete
c) Can read does not affect the availability of other Application Access fields
d) Allow configuration
a) All access to this table via web services
- Which of the following statements is true for the Form Designer?
a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
b) To create a new field on a form’s table, drag the appropriate data type from the Field Types tab to the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
d) To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
b) To create a new field on a form’s table, drag the appropriate data type from the Field Types tab to the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
Which one of the following is NOT a debugging strategy for client-side scripts?
a) g_form.addInfoMessage()
b) Field Watcher
c) jslog()
d) gs.log()
d) gs.log()
What syntax is used in a Record Producer script to access values from Record Producer form fields?
a) producer.field_name
b) producer.variablename
c) current.variable_name
d) current.field_name
b) producer.variablename
How do you configure a Scheduled Job to execute on the last day of every month?
a) Set the Run field value to Periodically and the Repeat Interval value to 31
b) Set the Run field value to Periodically and the Repeat Interval value to Last Day
c) Set the Run field value to Monthly and the Day field value to 31
d) Set the Run field value to Monthly and the Day field value to Last Day
c) Set the Run field value to Monthly and the Day field value to 31
Modules must have a Link type. Which one of the following is a list of Link types?
a) List of Records, Separator, Catalog Type, Roles
b) Assessment, List of Records, Separator, Timeline Page
c) List of Records, Content Page, Order, URL (from arguments:)
d) Assessment, List of Records, Content Page, Roles
b) Assessment, List of Records, Separator, Timeline Page
When managing global application files, you can NOT:
a) Add files from global scope to a global application
b) Remove files from a global application
c) Move an application file between global applications
d) Move application files into or out of a scoped application
d) Move application files into or out of a scoped application
Which utility is used to determine if field names in an Import Set match the field names on the target table when importing data into ServiceNow?
a) Auto Map Matching Fields
b) Transform Maps
c) CI Relationship Builder
d) Business Service Management Map
a) Auto Map Matching Fields
Which of the following are true for reports in ServiceNow?
(Choose three.)
a) Any user can see any report shared with them.
b) Can be a graphical representation of data.
c) All users can generate reports on any table.
d) Can be run on demand by authorized users.
e) Can be scheduled to be run and distributed by email.
a) Any user can see any report shared with them.
b) Can be a graphical representation of data.
d) Can be run on demand by authorized users.
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 sent
b) A Weight value of zero means that no email should be sent
c) The Weight value defaults to zero
d) A Weight value of zero means the Notification is always sent when the Notification’s When to send criteria is met
b) A Weight value of zero means that no email should be sent
You are writing an Async Business Rule for a table in a different scope than the Business Rule record. Which one of the following database operations CANNOT be part of the Async Business Rule’s configuration?
a) Delete
b) Update
c) Query
d) Insert
c) Query
Which one of the following is NOT a GlideUser (g_user) method?
a) userName()
b) getFullName()
c) hasRole()
d) hasRoleExactly()
a) userName()
ServiceNow Desktop applications automatically run on which platform(s):
a) Desktop
b) Smartphone
c) Desktop and Smartphone
d) Desktop and Tablet
d) Desktop and Tablet
16. Which of the following is NOT a trigger type in Flow Designer? A. Outbound Email B. Application C. Record D. Schedule
A. Outbound Email
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following? A. REST messages B. Table C. Script Include D. Workflow
B. Table
Which of the following objects does a Display Business Rule NOT have access to? A. previous B. GlideSystem C. g_scratchpad D. current
A. previous
Which of the following features are available to Global applications? (Choose two.) A. Automated Test Framework B. Source Control C. Delegated Development D. Flow Designer
C. Delegated Development
D. Flow Designer
Which one of the following is NOT a UI Action type? A. List choice B. Form button C. List banner button D. Form choice
D. Form choice
Which of the following is NOT supported by Flow Designer? A. Call a subflow from a flow B. Test a flow with rollback C. Use Delegated Developer D. Run a flow from a MetricBase Trigger
B. Test a flow with rollback
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 table
B. Any user with the application’s user role can modify the application’s scripts www.vceplus.com - Free Questions & Answers - Online Courses - Convert VCE to PDF - VCEplus.com
C. Out of scope applications can create Business Rules for the table
D. Out of scope applications can add new tables to the scoped application
C. Out of scope applications can create Business Rules for the table
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)? A. base table B. child table C. parent table D. all tables
B. child table
Which one of the following is true?
A. A UI Policy’s Actions execute before the UI Policy’s Scripts
B. The execution order for a UI Policy’s Scripts and Actions is determined at runtime
C. A UI Policy’s Scripts execute before the UI Policy’s Actions
D. A UI Policy’s Actions and Scripts execute at the same time
C. A UI Policy’s Scripts execute before the UI Policy’s Actions
Here is the Business Rule script template:
(function execute (current, previous /null when async/) {
}) (current, previous);
This type of JavaScript function is known as: A. Constructor B. Scoped C. Anonymous D. Self-invoking
B. Scoped
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
A. g_user.hasRole(‘catalog_admin’)
B. g_user.hasRoleExactly(‘catalog_admin’)
C. g_user.hasRoleOnly(‘catalog_admin’)
D. g_user.hasRoleFromList(‘catalog_admin’
C. g_user.hasRoleOnly(‘catalog_admin’)
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong. A. Identify the table B. Script the function(s) C. Create a class D. Create a prototype object from the new class
A. Identify the table
Which roles grant access to source control repository operations such as importing applications from source control, or linking an application to source control? (Choose two.) A. source_control B. source_control_admin C. admin D. git_admin
A. source_control
C. admin
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification? A. ${event.} B. ${current.} C. ${property name>.getDisplayValue()} D. ${gs.}
C. ${property name>.getDisplayValue()}
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 Include
B. The Protection policy option can only be enabled by a user with the admin role
C. The Protection Policy is applied only if the glide.app.apply_protection system property value is true
D. The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store
B. The Protection policy option can only be enabled by a user with the admin role
Which one of the following is true for GlideUser (g_user) methods?
A. Can be used in Client Scripts and UI Policies only
B. Can be used in Business Rules only
C. Can be used in Client Scripts, UI Policies, and UI Actions
D. Can be used in Business Rules, and Scripts Includes
C. Can be used in Client Scripts, UI Policies, and UI Actions
When configuring a module, what does the Override application menu roles configuration option do? A. Users with the module role but without access to the application menu access the module B. Self-Service users can access the module even though they do not have roles C. Admin is given access to the module even if Access Controls would ordinarily prevent access D. Users with access to the application menu can see the module even if they don’t have the module role
D. Users with access to the application menu can see the module even if they don’t have the module role
Which platform feature can be used to determine the relationships between field in an Import Set table to field in an existing ServiceNow table? A. Business Service Management Map B. Data Sources C. Transform Map D. Cl Relationship Builder
C. Transform Map
When configuring a REST Message, the Endpoint is:
A. The commands to the REST script to stop execution
B. The URI of the data to be accessed, queried, or modified
C. Information about the format of the returned data
D. The response from the provider indicating there is no data to send back
B. The URI of the data to be accessed, queried, or modified
When evaluating Access Controls, ServiceNow searches and evaluates:
A. Only for matches on the current table
B. Only for matches on the current field
C. From the most specific match to the most generic match
D. From the most generic match to the most specific match
A. Only for matches on the current table
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role? A. g_form.hasRoleExactly(‘admin’) B. gs.hasRole(‘admin’) C. g_form.hasRole(‘admin’) D. gs.hasRoleExactly(‘admin’)
C. g_form.hasRole(‘admin’)
From the list below, identify one reason an application might NOT be a good fit with ServiceNow.
The application:
A. Needs workflow to manage processes
B. Requires “as-is” use of low-level programming libraries
C. Requires reporting capabilities
D. Uses forms extensively to interact with data
B. Requires “as-is” use of low-level programming libraries