Font size
WorksheetsCAD ServiceNow
Total questions: 204
Worksheet time: 2hrs 52mins
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, b, c, and d
b, c, and d
a, b, and d
a, b, and c
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, b and c
a, b, and d
b, c and d
a, c and d
To see what scripts, reports, and other application artifacts will be in a published application:
Enter the name of the Application in the Global search field
Open the list of Update Sets for the instance
Examine the Application Files Related List in the application to be published
Open the artifact records individually to verify the value in the Application field
Which one of the following is NOT a debugging strategy for client-side scripts?
g_form.addInfoMessage()
Field Watcher
jslog()
gs.log()
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
All access to this table via web services
Can create, Can update, and Can delete
Can read does not affect the availability of other Application Access fields
Allow configuration
Which of the following is NOT a trigger type in Flow Designer?
Outbound Email
Application
Record
Schedule
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?
REST messages
Table
Script Include
Workflow
In an Email Notification, which one of the following is NOT true for the Weight field?
Only Notifications with the highest weight for the same record and recipients are sent
A Weight value of zero means that no email should be sent
The Weight value defaults to zero
A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met
Which of the following objects does a Display Business Rule NOT have access to?
previous
GlideSystem
g_scratchpad
current
Which of the following features are available to Global applications? (Choose two.)
Automated Test Framework
Source Control
Delegated Development
Flow Designer
Which one of the following is NOT a UI Action type?
List choice
Form button
List banner button
Form choice
Which of the following is NOT supported by Flow Designer?
Call a subflow from a flow
Test a flow with rollback
Use Delegated Developer
Run a flow from a MetricBase Trigger
Which of the following are true for reports in ServiceNow? (Choose three.)
Any user can see any report shared with them.
Can be a graphical representation of data.
All users can generate reports on any table.
Can be run on demand by authorized users.
Can be scheduled to be run and distributed by email.
Modules must have a Link type. Which one of the following is a list of Link types?
List of Records, Separator, Catalog Type, Roles
Assessment, List of Records, Separator, Timeline Page
List of Records, Content Page, Order, URL (from arguments:)
Assessment, List of Records, Content Page, Roles
Which one of the following is true for a table with the `Allow configuration` Application Access option selected?
Only the in scope application's scripts can create Business Rules for the table
Any user with the application's user role can modify the application's scripts
Out of scope applications can create Business Rules for the table
Out of scope applications can add new tables to the scoped application
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?
base table
child table
parent table
all tables
Which one of the following is true?
A UI Policy's Actions execute before the UI Policy's Scripts
The execution order for a UI Policy's Scripts and Actions is determined at runtime
A UI Policy's Scripts execute before the UI Policy's Actions
A UI Policy's Actions and Scripts execute at the same time
Here is the Business Rule script template:
This type of JavaScript function is known as:
Constructor
Scoped
Anonymous
Self-invoking
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
g_user.hasRole('catalog_admin')
g_user.hasRoleExactly('catalog_admin')
g_user.hasRoleOnly('catalog_admin')
g_user.hasRoleFromList('catalog_admin')
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.
Identify the table
Script the function(s)
Create a class
Create a prototype object from the new class
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.)
source_control
source_control_admin
admin
git_admin
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
${event.<property name>}
${current.<property name>}
${<property name>.getDisplayValue()}
${gs.<property name>}
Which one of the following is true for a Script Include with a Protection Policy value of Protected?
Any user with the protected_edit role can see and edit the Script Include
The Protection policy option can only be enabled by a user with the admin role
The Protection Policy is applied only if the glide.app.apply_protection system property value is true
The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store
Which one of the following is true for GlideUser (g_user) methods?
Can be used in Client Scripts and UI Policies only
Can be used in Business Rules only
Can be used in Client Scripts, UI Policies, and UI Actions
Can be used in Business Rules, and Scripts Includes
When configuring a module, what does the Override application menu roles configuration option do?
Users with the module role but without access to the application menu access the module
Self-Service users can access the module even though they do not have roles
Admin is given access to the module even if Access Controls would ordinarily prevent access
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?
Business Service Management Map
Data Sources
Transform Map
CI Relationship Builder
When configuring a REST Message, the Endpoint is:
The commands to the REST script to stop execution
The URI of the data to be accessed, queried, or modified
Information about the format of the returned data
The response from the provider indicating there is no data to send back
When evaluating Access Controls, ServiceNow searches and evaluates:
Only for matches on the current table
Only for matches on the current field
From the most specific match to the most generic match
From the most generic match to the most specific match
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?
g_form.hasRoleExactly('admin')
gs.hasRole('admin')
g_form.hasRole('admin')
gs.hasRoleExactly('admin')
From the list below, identify one reason an application might NOT be a good fit with ServiceNow.
The application:
Needs workflow to manage processes
Requires ג€as-isג€ use of low-level programming libraries
Requires reporting capabilities
Uses forms extensively to interact with data
Identify the incorrect statement about Delegated Development in ServiceNow.
Administrators can grant non-admin users the ability to develop global applications.
Administrators can specify which application file types the developer can access.
Administrators can grant the developer access to script fields.
Administrators can grant the developer access to security records.
One of the uses of the ServiceNow REST API Explorer is:
Practice using REST to interact with public data providers
Find resources on the web for learning about REST
Convert SOAP Message functions to REST methods
Create sample code for sending REST requests to ServiceNow
Which one of the following is true regarding Application Scope?
All applications are automatically part of the Global scope
Applications downloaded from 3 party ServiceNow application developers cannot have naming conflicts rd
Any developer can edit any application
Developers can choose the prefix for a scope's namespace
Which one of the following is the baseline behavior of a table in a privately-scoped application?
The table and its data are not accessible using web services
Any Business Rule can read, write, delete, and update from the table
Only artifacts in the table's application can read from the table
All application scopes can read from the table
Which one of the following is NOT a purpose of application scoping?
Provide a relationship between application artifacts
Provide a way of tracking the user who developed an application
Provide a namespace (prefix and scope name) to prevent cross application name collisions
Provide controls for how scripts from another scope can alter tables in a scoped application
It is best practice to define the business requirements and the process(es) an application will manage as part of the application development plan. What are some of the considerations to document as part of the business process?
Business problem, data input/output, users/stakeholders, and process steps
Business problem, data input/output, project schedule, and process steps
Business problem, data input/output, users/stakeholders, and database capacity
Business problem, users/stakeholders, available licenses, and database capacity
Which of the following statements does NOT apply when extending an existing table?
The parent table's Access Controls are evaluated when determining access to the new table's records and fields
The new table inherits the functionality built into the parent table
The new table inherits all of the fields from the parent table
You must script and configure all required behaviors
Which of the following CANNOT be debugged using the Field Watcher?
Business Rules
Script Includes
Client Scripts
Access Controls
Which objects can be used in Inbound Action scripts?
current and previous
current and email
current and event
current and producer
Which one of the following is part of the client-side scripting API?
workflow.scratchpad
GlideUser object (g_user)
current and previous objects
GlideSystem object (gs)
Application developers configure ServiceNow using industry standard JavaScript to`¦
Enable the right-click to edit the context menus on applications in the navigator
Extend and add functionality
Customize the organization's company logo and banner text
Configure the outgoing email display name
How many applications menus can an application have?
3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
As many as the application design requires
2, one for an application's user modules and one for an application's administrator modules
1, which is used for all application modules
The source control operation used to store local changes on an instance for later application is called a(n) <blank>.
Branch
Tag
Stash
Update set
What syntax is used in a Record Producer script to access values from Record Producer form fields?
producer.field_name
producer.variablename
current.variable_name
current.field_name
Which of the following methods prints a message on a blue background to the top of the current form by default?
g_form.addInfoMsg()
g_form.addInfoMessage()
g_form.showFieldMessage()
g_form.showFieldMsg()
A scoped application containing Flow Designer content dedicated to a particular application is called a(n):
Spoke
Bundle
Action
Flow
What is a Module?
The functionality within an application menu such as opening a page in the content frame or a separate tab or window
A group of menus, or pages, providing related information and functionality to end-users
A way of helping users quickly access information and services by filtering the items in the Application Navigator
A web-based way of providing software to end-users
Which source control operation is available from BOTH Studio and the Git Repository?
Create Branch
Apply Remote Changes
Stash Local Changes
Edit Repository Configurations
Which one of the following is NOT required to link a ServiceNow application to a Git repository?
Password
URL
User name
Application name
Which Report Type(s) can be created by right-clicking on a column header in a table's list?
Bar Chart, Pie Chart, Histogram, and Line
Bar Chart
Bar Chart, Pie Chart, and Histogram
Bar Chart and Pie Chart
Which one of the following is NOT a method used for logging messages in a server-side script for a privately-scoped application?
gs.log()
gs.error()
gs.warn()
gs.debug()
If the Create module field is selected when creating a table, what is the new module's default behavior?
Open an empty form so new records can be created
Open a link to a wiki article with instructions on how to customize the behavior of the new module
Display an empty homepage for the application
Display a list of all records from the table
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?
You must create Access Controls to prevent all other application scopes from creating configuration records on an application's data tables rather than using Application Access
Set the Accessible from field value to All application scopes and de-select the Can create option
Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
Set the Accessible from field value to This application scope only
What are some of the benefits of extending an existing table such as the Task table when creating a new application? a) You can repurpose existing fields by simply changing the label. b) Use existing fields with no modifications. c) Existing logic from the parent table will be automatically applied to the new table. d) All of the parent table records are copied to the new table.
a, b, c, and d
a and b
b and c
a, b, and c
When configuring an Access Control which has no condition or script, which one of the following statements is NOT true?
table.*will grant access to every field in a record
table.None will grant access to every record on the table
table.field will grant access to a specific field in a record
table.id will grant access to a specific record on the table
Which of the following methods are useful in Access Control scripts?
g_user.hasRole() and current.isNewRecord()
gs.hasRole() and current.isNewRecord()
g_user.hasRole() and current.isNew()
gs.hasRole() and current.isNew()
Which one of the following client-side scripts apply to Record Producers?
Catalog Client Scripts and Catalog UI Policies
UI Scripts and UI Actions
UI Scripts and Record Producer Scripts
Client Scripts and UI Policies
When a ServiceNow instance requests information from a web service, ServiceNow is the web service:
Publisher
Specialist
Provider
Consumer
Which one of the following is the fastest way to create and configure a Record Producer?
Create a Catalog Category, open the category, and select the Add New Record Producer button
Use the Record Producer module then add and configure all variables manually
Open the table in the Table records and select the Add to Service Catalog Related Link
Open the table's form, right-click on the form header, and select the Create Record Producer menu item
Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?
GlideRecord and current
GlideUser and GlideRecord
GlideSystem and GlideRecord
GlideSystem and current
Can inherited fields be deleted from a table?
Yes, select the red X in the left-most column in the table definition
Yes, but only if they are text fields
Yes, but only if there has never been any saved field data
No, inherited fields cannot be deleted from a child table
What is the purpose of the Application Picker?
Select an application to run
Select an application as a favorite in the Application Navigator
Choose an application to edit and set the Application Scope
Choose an application to download and install
What are Application Files in a ServiceNow application?
An XML export of an application's table records
CSV files containing data imported into an application
ServiceNow artifacts comprising an application
XML exports of an application's Update Set
Which one of the following is NOT true for Modules?
Modules open content pages
Access to Modules is controlled with roles
Every Module must be part of an Application Menu
Every Module must be associated with a table
A graphical view of relationships among tables is a <blank>.
Schema map
Dependency view
Graphical User Interface
Map source report
Which one of the following is true for the Application Picker?
All custom application scope and the Global scope appear in the Application Picker
All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
Only custom applications appear in the Application Picker
Only downloaded applications appear in the Application Picker
When creating an application through the Guided Application Creator, which of the following is a user experience option?
Portal
Mobile
Self-service
Workspace
When writing a Client Script to provide feedback targeted at a specific field, which method should be used?
g_form.showInfoMessage()
g_form.showFieldMsg()
g_form.addInfoMessage()
g_form.addFieldMsg()
Which actions can a Business Rule take without scripting?
Set field values and write to the system log
Set field values and generate an event
Set field values and add message
Set field values and query the database
Which server-side object provides methods for working with dates when writing a script in a privately scoped application?
GlideDateTime
GlideRecord
GlideSystem
current
Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer UI. How is the page specified?
Create an application property to store the URL
Configure the page in the Module that opens the Record Producer UI
Write an after Business Rule script for the Record Producer's table: window.redirect = "<URL>";
Write a script in the Record Producer's Script field: producer.redirect = "<URL>";
Identify characteristic(s) of a Record Producer. (Choose three.)
All records created using this strategy are inserted into the Requested Item [sc_req_item] table.
Each field prompts the user with a question rather than a field label.
They must be scripted.
You can script behaviors of fields in the user interface.
Graphics can be included on the user interface.
Which server-side API debug log method is available for scoped applications?
gs.log()
gs.info()
gs.debuglog()
gs.print()
Which script types execute on the server? (Choose three.)
Business Rule
Client Scripts
UI Policies
Script Actions
Scheduled Jobs
What is the best UX format to use for lists and forms?
Forms
Lists
Standard
Classic
When creating a table in a privately-scoped application, which four Access Controls are created for the table?
Insert, Delete, Query, Write
Create, Delete, Read, Write
Create, Delete, Read, Update
Insert, Delete, Query, Update
Which one of the following is true for this script fragment?
g_user.hasRole('x_my_app_user');
There is no g_user.hasRole() method
The method returns false only if the currently logged in user has the x_my_app_user role
The method returns true only if the currently logged in user has the x_my_app_user role
The method returns true if the currently logged in user has the x_my_app_user role or the admin role
Which one of the following database operations cannot be controlled with Application Access?
Query
Update
Create
Delete
For Application Access there is a configuration option called Allow access to this table via web services. Which one of the following statements is true when this option is selected?
This option restricts the ability to delete records via web services but records can always be read
Even when not selected, users with the correct permissions can use web services to access the table's records
This option restricts access only to SOAP web services but does not apply to REST
The user performing the query via web services must have the correct permissions to access the table's records
Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose three.)
The user has one of the roles specified in the Required roles related list.
Scripts configured in the Access Control must evaluate to true.
Other matching Access Controls for the records evaluate to true.
Conditions configured in the Access Control must evaluate to true.
The user must be granted access through a business rule.
What is a workflow context?
The table for which a workflow is defined plus any conditions such as "Active is true"
It is generated from a workflow version, executes activities, and follows transitions
The business reason or process for which a workflow is designed
It is a checked out workflow which is being edited
Which one of the following is a benefit of creating an Application Properties page for each application you develop?
Application Properties allow a developer to override the application properties inherited from ServiceNow
An Application Properties page is a good landing page for an application
Application Properties allow a developer or admin to make changes to an application's behavior without modifying application artifacts
Application users know to go to the Application Properties page to change the appearance of an application
Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
The application needs to send weekly email reminders to requestors for all records on a table
The application needs to run a clean up script on the last day of every month
The application needs to query the database every day to look for unassigned records
The application needs to run a client-side script at the same time every day
Which one of the following objects CANNOT be used in a Script Action script?
previous
GlideRecord
event
current
How does ServiceNow match inbound email to existing records?
Watermark
Record link
Subject line
sys_id
When debugging Email Notifications, what must you check on a user record? (Choose three.)
Active must be true.
The First name and Last name fields must have values.
The value in the Notification field must be set to enabled.
The user must not be locked out.
The Email field must have a value.
What are web services?
Methods used to create and maintain UI Pages
Methods used to allow applications to connect to other software applications over a network
Methods used to discover a wide variety of systems and applications
They provide a customer-facing view of available service and product offerings provided by departments within the organization
Which of the following methods is NOT part of the ServiceNow REST API?
COPY
GET
DELETE
POST
You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A's records to be installed as part of the application.
Table A's records will be installed when:
Table A is active and extends the Task table
Table A's records are added to the application record using the Create Application Files context menu item
Table A has an automatic number counter for new records
Table A is not included in the System Clone > Exclude Tables list
How can an application link to a repository behind a firewall?
This option is not supported.
Link an application to source control through a MID Server.
Link an application to source control through an access token.
Link an application to source control with multi-factor authentication.
What is the ServiceNow store?
Downloadable content ServiceNow script archive
Alternate name for the ServiceNow Developer Share site
The source for ServiceNow Community created developer content
Marketplace for free and paid certified ServiceNow applications and integrations
Tables that extend a table do what?
Automatically update the application scope
Do not inherit the parent’s fields
Sometimes inherit the parent’s fields
Inherit the parent’s fields
When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?
Create table from template
Create table from scratch
Extend a table
Upload spreadsheet
Server-side scripts manage what?
Database and backend
Playbook access
User access
Forms and Fields
What intuitive development interface guides users through the initial application development process?
Guided Tour Designer
Guided Application Creator
ServiceNow Studio
Flow Designer
What are some benefits of developing private, scoped applications? (Choose two.)
To avoid using a code repository like GitHub or GitLab
To reduce risk at code collisions
To enable installation and uninstallation of an application
To replicate ServiceNow functions a private scope
Which of the following statements is NOT true for the Form Designer?
To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
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.
What records are used to track cross-scope applications or scripts that request access to an application, application resource, or event?
Restricted caller access records
Caller tracking records
Access control level records
Cross-scope access records
Which ATF Test step allows you to create a user with speeded roles and groups for the test?
Create a group
Impersonation
Create a user
Create a role
What plugin enables the Guided Application Creator?
com.glide.sn-guided-app-creator
com.glide.service_creator
com.glide.snc.apps_creator
com.snc.apps_creator_template
Which of the following can be an external data source for a ServiceNow application?
Microsoft Excel File
Data provided by a public web service using SOAP or REST
CSV file
All of the above
Which one of the following is true for the Application Picker and Application Scope?
Global is a reserved application which does not appear in the Application Picker
Selecting an application from the Application Picker does not set the Application Scope
Selecting an application from the Application Picker sets the Application Scope
Selecting Global in the Application Picker sets the Application Scope to Incident
Which of the following is an available feature in Studio? (Choose two.)
Push to update set
Merge branches
Search code
Push to external source control
The Task table is an example of which of the following? (Choose two.)
Parent class
Legacy class
Child class
Base class
Which of the following is true about deleting fields from a table?
Table records are deleted when a field is deleted
User-defined non-inherited fields can be deleted
Any field on a table can be deleted
Inherited fields can be deleted
Why would you build a custom app? (Choose two.)
To avoid using a code repository like GitHub or GitLab
To replace ServiceNow base tables
To fulfill a specific use case on internal processes
To create a custom integration for a 3rd party system
What are three ServiceNow table creation methods? (Choose three.)
Using legacy Workflows
Upload and turn a spreadsheet into a custom table
Using Flow Designer
Extend a table
Create a custom table
When selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?
Use the String data type tor a free-form text field
Use the Phone Number data type to automate phone number data validation
Use the Choice data type to limit options in a field
Use the Date data type to enter the date and time of day
Which one of the following is NOT part of the Form Designer?
Page header
Schema map
Field navigator
Form layout
Which class is NOT part of the Client side scoped APIs?
GlideDialogWindow
GlideAjax
GlideRecord
GlideForm
When designing and creating a form what do you create to organize fields on a form?
Buttons
Tabs
Sections
Related lists
Which one of the following is a good practice for adding instructions to a form?
Related links to wiki pages
A Context Menu UI Action
Annotations
A populated read-only field
Which of the following GlideRecord methods run a query against a database table? (Choose three.)
_get()
runQuery()
query()
_query()
get(
What is the GlideForm Client-side scripting object?
sn.form
g_form
gs.form
gs_form
In a Business Rule, which one of the following returns the sys_id of the currently logged in user?
g_form.getUserID()
gs.getUserSysID()
gs.getUserID()
g_form.getUserSysID()
Access Control debug information identifies whether each element of an Access Control granted or denied access. The elements appear in the debug information in the order of evaluation. In which order are the elements of an Access Control evaluated?
Conditions, Roles, Script
Conditions, Script, Roles
Roles, Conditions, Script
Script, Conditions, Roles
Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:
Which field or fields can a user with the itil role read?
All fields except field3
field1, field2, and field3
field1 and field3
field3 only
Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:
Which field or fields can a user with the itil role read?
field3 only
filed1 and field3
All fields
All fields except field3
Which of the following is NOT a caller access field option?
Caller Tracking
Caller Restriction
None
Caller Permission
Which method is used to retrieve Application Property values in a script?
gs.getProperty()
g_form.getAppProperty()
g_form.getProperty()
gs.getAppProperty()
What Module Link type is used to access an Application Properties page?
Single Record
HTML (from Arguments)
URL (from Arguments)
Script (from Arguments)
Identify the way(s) an application can respond to an Event generated by the gs.eventQueue() method.
a. Script Action
b. Scheduled Script Execution (Scheduled Job)
c. UI Policy
d. Email Notification
b and c
c
a and d
a and c
When troubleshooting and debugging notifications, where do you navigate to see if an email was sent m response to an event?
System Logs > Events
System Logs > Emails
System Logs > Push Notifications
System Logs > ICE Logs
What are the benefits of storing the majority of an Application’s server-side script logic in a Script Include?
a. This makes execution faster.
b. Only run when called from a script.
c. The script logic can be hidden when the Application is installed from the ServiceNow Store. d. For some changes to application logic there is only one place to make edits.
a, b, and d
a, b, c, and d
b, c, and d
a, b, and c
Which of the following is NOT a Flow Designer feature?
Run a flow from a Catalog item
Call a flow from another flow or subflow
Add stages to a flow
Test a flow using the “Run as” feature
What is the purpose of the coalesce field when importing data?
If a match is not found, the existing record is updated
To determine if a record matches an existing record or is a new record
To identify and merge duplicate records
When a match is found, a new record is inserted
If you create a SOAP Message what syntax indicates a variable to pass when the function is called?
current.variable_name
${variable_name}
< variable_name >.do?WSDL
< variable_name >
Which of the following is NOT a way to install an application on a ServiceNow instance?
Install an application from the Application Repository
Select the Copy button on the application record
Download and install an application from the ServiceNow Share web site
Download and install a third-party application from the ServiceNow Store
Using Custom UI test step in Automated Test Framework, which of the following is NOT a testable page component?
Buttons
UI controls
UI pages
Form field values
Why create Applications in ServiceNow?
a) To replace outdated, inadequate, custom business applications and processes b) To extend service delivery and management to all enterprise departments c) To allow users full access to all ServiceNow tables, records, and fields d) To extend the value of ServiceNow
a, b, and d
a, b, c, and d
a, b, and c
b, c, and d
Flow Designer supports variable data types to store record data and complex data. Which of the following are supported variable data types? (Choose three.)
Choice data type
Array.Reference data type
Integer data type
Array.Boolean data type
Label data type
Which of the following statements is true about Guided Application Creator?
The global scope option is turned on by default
Default access controls are automatically created
The welcome screen appears every time a new application is created
A scoped application user role is automatically created
What are the ways to designate data tables when using Guided Application Creator (GAC)? (Choose three.)
Create a new table on the platform
Use a freeform database
Upload an existing spreadsheet
Use an existing table on the platform
Upload an existing word processing document
What is the Event Registry?
A Workflow which is launched every time an Event is generated; used to debug Events
The Event Log which lists all Events that have been generated
The method used in server side scripts to generate Events and pass parameters
A table containing a record for every Event known to the ServiceNow system which allows ServiceNow to react when Events are generated
Identify the ways an application can respond to an Event generated by the gs.eventQueue() method: (Choose two.)
Client Script
Email Notification
Scheduled Script Execution (Scheduled Job)
Script Action
UI Polic
Is it possible to change an application’s scope?
No, it’s not possible
Yes, it’s possible
Yes, but only from global scope to private scope
Yes, but only from private scope to global scope
Which of the following is true about g_scratchpad? (Choose two.)
Used to push information from the server to the client
Does not exist on the mobile platform
Has constructors and methods
Has default properties passed by client-side scripts
Client-side scripts manage what?
User access
Database and backend
Playbook access
Forms and Form Fields
When debugging Email Notifications, what must you check on a user record? (Choose two.)
Active must be true.
The Email field must have a valid value.
The user must not be locked out.
The First name and Last name fields must have values.
Delegation must be enabled.
When crafting a scoped application that contains flow actions, what is the application called?
Action
Spoke
Bundle
Flow
Which are reasons an application could be developed on the ServiceNow platform? (Choose three.)
It needs workflow to manage processes.
It requires reporting capabilities.
It uses forms extensively to interact with data.
It requires low-level programming libraries.
It uses multimedia features.
Once an application is ready to share, which of the following methods of publishing are supported by ServiceNow? (Choose three.)
Publish to an application repository
Publish to the ServiceNow Store
Publish to an Update Set
Publish to a spreadsheet
Publish to a local USB device
What is required to link a ServiceNow application to a Git repository? (Choose three.)
ACL
Application name
Password
User name
URL
What is the Endpoint when configuring a REST Message?
The URI of the WebServer
The command to the REST script to stop execution
Tne URI of the data to be accessed, queried, or modified
The provider response indicates there is no data to send back
Which client-side scripts apply to Record Producers? (Choose two.)
Fix Scripts
Catalog Client Scripts
UI Scripts
Catalog UI Policies
Record Producer Polices
Which business requirements and process(es) should be documented as part of the application development plan? (Choose four.)
Business problem
Process steps
Users/stakeholders
Database capacity
Data input/output
Which objects are used as part of the client-side scripting API? (Choose two.)
gs
current ana previous
g_user
workflow.scratchpad
g_form
When creating application tables, a user role is automatically added to the table record. Which other role does an application typically have?
Application Super User
Application Fulfiller
Application Admin
Application Manager
Which determines the relationships between field in an Import Set table to field in an existing ServiceNow table?
Data Sources
Schema Map Relationship Builder
Business Service Management Map
Transform Map
What data types of Flow Designer variables are supported to store record data and complex data? (Choose three.)
Label data type
Integer
Array.Reference
Choice
String
What are the features of Flow Designer? (Choose three.)
Add stages to a flow.
Test a flow using the “Run as” feature.
Support Java Scripting code to test conditions that trigger the flow.
Run a flow from a Catalog item.
Perform form field data validation at client side.
How is access to Application Menus and Modules controlled?
Access Control
Client Scripts
Roles
Application Rules
What is the ServiceNow App Repository?
A Request table
A database containing ServiceNow apps
A collection of files in a Git database
Another name for update sets
What happens to the List view when a new field is added to an existing table?
The new field is added at the start of the List
The new field is added at the end of the List
The new field is not added to the List view
A List View is created with the new Field
Exportitem table is extended from Item Table with the additional column of ItemCountry added. The Item table contains the columns ItemName and ItemQty.
Which fields are available in the ExportItem Table?
Only ItemCountry
ItemName, ItemQty, and ItemCountry
ItemCountry, Number
Only ItemName, ItemQty
What data types of Flow Variables are supported to store record data? (Choose three.)
Choice
Date
Array
Integer
String
Which of the following objects does a Before Business Rule have access to in a script?
current
previous
GlideRecord
All of the above
Which options are strategies for debugging client-side scripts? (Choose two.)
g_form.addInfoMessage()
gs.addErrorMessage()
gs.log()
jslog()
In a privately-scoped application, which methods are used for logging messages in server-side scripts? (Choose two.)
When creating an application through the Guided Application Creator, what are the options for creating a table? (Choose three.)
Create a table from a template
Create a table from scratch
Link to external tables
Extend a table
Upload a spreadsheet
Which one of the following database operations can be controlled with Application Access? (Choose two.)
Query
Update
Create
Delete
Which is an example of when an application might use a Scheduled Script Execution (Scheduled Job)?
The application needs to run a client-side script at the same time every day.
The application needs to query the database every day to look for unassigned records.
To display a custom welcome message when a user logs in.
To validate form input fields before a record is submitted.
What field type would you select if you want to query records from another table on a form?
Use the Date field type.
Use the Phone Number field type.
Use the String field type
Use the Reference field type.
What functionality is supported by Flow Designer?
The role flow_operator can create and edit flows.
Flows can be "Run as” security admin.
Call a subflow from a flow.
Flows can trigger off a record being deleted.
What is a characteristic of Modules?
Every Module must be associated with a table.
Access to Modules is not controlled with roles.
Every Module must be part of an Application Menu.
Modules cannot open forms or lists.
Which method can be used to install an application on a ServiceNow instance? (Choose three.)
Download from Stack Overflow.
Download and install a third-party application from the ServiceNow Store.
Use the "Install" button on the application record.
Install an application from the Application Repository.
Import an application from an XML file.
Which one of the following is the correct Link Type to select when creating a module which opens the Record Producer UI for a user rather than the ServiceNow form UI?
URL (from Arguments:)
Content Page
Script (from Arguments:)
HTML (from Arguments:)
Which are valid caller access field options? (Choose three.)
Caller Tracking
Accessible from
None
Allow Configuration
Caller Restriction
Which items are valid UI Action types in ServiceNow? (Choose three.)
List banner button
Form button
Record navigation button
List choice
Form choice
What occurs when an existing table is extended in ServiceNow?
The parent table's Access Controls are ignored when determining access to the new table's records and fields.
The new table does not inherit any of the fields from the parent table.
You must script and configure all required behaviors.
The new table inherits the functionality built into the parent table.
An application called My App has a table, MyAppTable, with this Application Access configuration:
Accessible from: All application scopes
Can read: Selected -
Can delete: Not selected -
Allow configuration: Selected -
Which of the following is true based on this configuration?
An application developer working in another privately scoped application can write a Business Rule for the MyAppTable table which successfully deletes all records from the MyAppTable table
An application developer working in the My App scope can write a Business Rule for the MyAppTable table which successfully deletes all records from the MyAppTable table
Any Application developer can write a Business Rule which successfully deletes all records from the MyAppTable
No Business Rule can be written which successfully deletes all records from the MyAppTable table
Which one of the following is true about client-side scripted security?
Client-side scripts have access to both the GlideSystem (gs) and GlideUser (g_user) methods
Client-side scripts have access to the GlideUser (g_user) methods
Client-side scripts have no access to user methods
Client-side scripts have access to the GlideSystem (gs) user methods
How can Administrators expand the list of supported file types for code search in ServiceNow Studio?
By modifying the default code search table
By configuring metadata synchronization settings
By creating a new code search group
By adding new file types to a custom search group
What happens if a record producer script aborts the record generation process in ServiceNow?
Record creation displays an error message to the user
Record is not generated in the Item Produced Record table
Record creation is redirected to a confirmation page
Record creation terminates without notifying the user
What is a function of an update set in ServiceNow Studio?
To track and monitor system performance metrics
To create new custom applications
To manage configurations directly in a production environment
To group configuration changes for transfer between instances
How can an application respond to an Event triggered by the gs.eventQueue() method? (Choose two.)
Client Script
UI Policy
Script Action
Scheduled Script Execution (Scheduled Job)
Email Notification
What is a scoped application that contains Flow Designer actions tailored for a specific application or record type?
Bundle
Flow
Spoke
Action
What is a reason for building a custom application? (Choose two.)
To avoid using application repository
To replace ServiceNow base tables
To create a custom integration for a 3rd party system
To fulfill a specific use case on internal processes
What can a developer do with REST API Explorer? (Choose two.)
Practice using REST to interact with public data providers
Convert REST Message functions to REST methods
Find resources on the web for learning about REST
Create sample code for sending REST requests to ServiceNow
Test API endpoints on ServiceNow
Which table in ServiceNow stores the details of customizations included in an update set?
Customer Update [sys_update_xml]
System Properties [sys_properties]
Application Registry [sys_app]
Update Set [sys_update_set]
What is the default module name when a new application table is created?
X_' prefixed to the application name
Plural form of the application name
Same name as the application name
'U_' prefixed to the application name
Which feature can be used to add instructions to a form?
A Context Menu UI Action for instructions
Annotations for form instructions
Related links to documentation pages
A populated read-only information field
What is displayed to delegated developers to package changes for deployment in ServiceNow Studio?
Tools tab
Export to XML
Publish Button
Update Set Picker
What does Application Scoping provide? (Choose two.)
A method to track users involved in developing the application.
A namespace (prefix and scope name) to prevent cross-application name collisions.
A means to control which roles can view the application and its related modules.
A means to control how scripts from other scopes can alter tables in a scoped application.
Why are application files important? (Choose two.)
They store user credentials for the application.
They define the app logic and behavior.
They restrict access to the application.
They monitor app performance metrics.
What happens when an existing table is extended? (Choose two.)
Specific fields from the parent table can be selected to be inherited.
Parent table Access Controls are also evaluated while determining access for the new table.
The new table inherits the functionality built into the parent table.
The new table inherits all the fields from the parent table.
Dictionary entries for the new table also include records for fields from the parent table.
When can the value "Protected" be leveraged in a Protected Policy for a Script Include?
A user with the admin role enables the Policy option
The glide.app.apply_protection system property is set to "True"
The application is downloaded from the ServiceNow App Store
A user with the protected_edit role edits the Script Include
When configuring a REST Message, what syntax indicates passing a variable during a function call?
${variable_name}
< variable_name >
current.variable_name
< variable_name >.do?WSDL
What does the "Read-only" protection policy for Script Includes allow in a custom application?
Application developers can customize the Script Include.
Only administrators can delete the Script Include.
Application developers can view the script logic but not change it.
Only administrators can edit the Script Include.
Which Client-side scoped API class can be used as a replacement for GlideRecord?
GlideElement
GlideDialogWindow
GlideAjax
GlideForm
What Link type creates a module that opens a Record Producer UI instead of a Form UI?
URL (from Arguments:)
Content Page
Script (from Arguments:)
HTML (from Arguments:)
An app developer wants to review the scripts, reports, and other application artifacts included in a published app. What steps are taken to review those items?
Enter the name of the Application in the Global search field
Open the list of Update Sets for the instance
Examine the Application Files Related List in the application to be published
Open the artifact records individually to verify the value in the Application field
What is a benefit of creating an Application Properties page for each application?
Developers or admins can adjust behavior without altering artifacts
Acts as a central larding page for the application
Developers can override inherited application properties
Users can modify the appearance of the application
Where can an application be published once it is ready to share in ServiceNow? (Choose three.)
Publish to the ServiceNow Store
Publish to an Update Set
Publish to an application repository
Publish to a spreadsheet
Publish to a local USB device
What does the "enforcing" option in Runtime access tracking settings do?
Logs access requests to cross-scope resources and requires an administrator to authorize each request.
Blocks all access requests to cross scope resources.
Authorizes all access requests to cross scope resources without logging there.
Logs and authorizes all access requests to cross-scope resources automatically.
This script fragment is executed in an application
g user.hasRole('x my app user');
What is the logical evaluation of this script fragment?
Method returns "False" if the currently logged in user has the x_my_app_user role only
Method returns "True" if the currently logged in user has the x_my_app_user role only
Method returns "True " if the currently logged in user has the x_my_app_user or the admin roles
Method returns "False" if the currently logged in user has admin in role
An app developer enables the 'Allow access to this table via web services' option in Application Access.
What is the result of this configuration?
Users are allowed to write table records but restricts delete via web services.
Developers from other application scope can write scripts for this table.
A user having correct permissions, querying via v/eh services can access table records.
Users querying via web services can access table records, regardless of permissions.
Where car GlideUser (g.user) methods be utilized within ServiceNow?
Client Scripts and UI Policies only
Business Rules only
Client Scripts, UI Policies, and UI Actions
Business Rules, and Scripts Includes
Which scenario will a Scheduled Script execution (Scheduled Job) be implemented?
The application executes a client-side script daily at the same time.
The application displays a custom welcome message when a user logs in.
The application queries the database daily to check unassigned records.
The application validates form input fields before a record is submitted.
How does ServiceNow match inbound email to existing records?
Watermark
Record link
Subject line with record number
sys_id
What is a limitation when using record producers in ServiceNow?
Record producers cannot redirect users after record creation
Record producers cannot he used for tables in the same scope
Record producers should not be used to create requested item records
Record producers must always call the update method on the current record
What is the ServiceNow Application Repository?
A database containing custom ServiceNow applications
A database for tracking user permissions
A database of ServiceNow provided applications
A database for logging application errors
Which Automated Test Framework (ATF) test step is used to set up a specific user profile?
Create a group
Create a user
Impersonation
Create a role
A developer wants to set up an application module that allows inserting new records into a table.
Which configuration option achieves this?
Link type
Filter
Application Menu
Table
