Which of the following methods are useful in Access Control scripts?
Ag_user.hasRole() and current.isNewRecord()
Bgs.hasRole() and current.isNewRecord()
Cg_user.hasRole() and current.isNew()
Dgs.hasRole() and current.isNew()
Which one of the following is a benefit of creating an Application Properties page for each application you develop?
AApplication Properties allow a developer to override the application properties inherited from ServiceNow
BAn Application Properties page is a good landing page for an application
CApplication Properties allow a developer or admin to make changes to an application's behavior without modifying application artifacts
DApplication users know to go to the Application Properties page to change the appearance of an application
Tables that extend a table do what?
AAutomatically update the application scope
BDo not inherit the parent’s fields
CSometimes inherit the parent’s fields
DInherit the parent’s fields
What are the features of Flow Designer? (Choose three.)
AAdd stages to a flow.
BCall a flow from another flow or subflow.
CTest a flow using the “Run as” feature.
DSupport Java Scripting code to test conditions that trigger the flow.
ERun a flow from a Catalog item.
FPerform form field data validation at client side.
Question 7
Working with External Data
0
Question 8
Designing and Creating an Application
Question 9
Designing and Creating an Application
Question 10
Working with External Data
Question 11
Security and Restricting Access
Question 12
Application Automation
Question 13
Application User Interface
Question 14
Managing Applications
Question 15
Application User Interface
Question 16
Managing Applications
Question 17
Security and Restricting Access
Question 18
Application Automation
Question 19
Security and Restricting Access
Question 20
Security and Restricting Access
Question 21
Security and Restricting Access
Question 22
Managing Applications
Question 23
Managing Applications
Question 24
Security and Restricting Access
Question 25
Managing Applications
Question 27
Application User Interface
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ad
Want a break from the ads?
Become a Supporter and enjoy a completely ad-free experience, plus unlock Learn Mode, Exam Mode, AstroTutor AI, and more.
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
Ask AstroTutor
0
What data types of Flow Designer variables are supported to store record data and complex data? (Choose three.)
ALabel data type
BInteger
CArray.Reference
DChoice
EString
Which of the following statements is true about Guided Application Creator?
AThe global scope option is turned on by default
BDefault access controls are automatically created
CThe welcome screen appears every time a new application is created
DA scoped application user role is automatically created
Which of the following is true about g_scratchpad? (Choose two.)
AUsed to push information from the server to the client
BDoes not exist on the mobile platform
CHas constructors and methods
DHas default properties passed by client-side scripts
What is required to link a ServiceNow application to a Git repository? (Choose three.)
AURI
BACL
CApplication name
DPassword
EUser name
FURL
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
Ag_user.hasRole('catalog_admin')
Bg_user.hasRoleExactly('catalog_admin')
Cg_user.hasRoleOnly('catalog_admin')
Dg_user.hasRoleFromList('catalog_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.<property name>}
B${current.<property name>}
C${<property name>.getDisplayValue()}
D${gs.<property name>}
Which of the following methods prints a message on a blue background to the top of the current form by default?
Ag_form.addInfoMsg()
Bg_form.addInfoMessage()
Cg_form.showFieldMessage()
Dg_form.showFieldMsg()
Which of the following features are available to Global applications? (Choose two.)
AAutomated Test Framework
BSource Control
CDelegated Development
DFlow Designer
Which of the following are true for reports in ServiceNow? (Choose three.)
AAny user can see any report shared with them.
BCan be a graphical representation of data.
CAll users can generate reports on any table.
DCan be run on demand by authorized users.
ECan be scheduled to be run and distributed by email.
Which one of the following is true?
AA UI Policy's Actions execute before the UI Policy's Scripts
BThe execution order for a UI Policy's Scripts and Actions is determined at runtime
CA UI Policy's Scripts execute before the UI Policy's Actions
DA UI Policy's Actions and Scripts execute at the same time
Which one of the following is true for a Script Include with a Protection Policy value of Protected?
AAny user with the protected_edit role can see and edit the Script Include
BThe Protection policy option can only be enabled by a user with the admin role
CThe Protection Policy is applied only if the glide.app.apply_protection system property value is true
DThe Protection Policy is applied only if the application is downloaded from the ServiceNow App Store
Here is the Business Rule script template:
This type of JavaScript function is known as:
AConstructor
BScoped
CAnonymous
DSelf-invoking
When configuring a module, what does the Override application menu roles configuration option do?
AUsers with the module role but without access to the application menu access the module
BSelf-Service users can access the module even though they do not have roles
CAdmin is given access to the module even if Access Controls would ordinarily prevent access
DUsers with access to the application menu can see the module even if they don't have the module role
When evaluating Access Controls, ServiceNow searches and evaluates:
AOnly for matches on the current table
BOnly for matches on the current field
CFrom the most specific match to the most generic match
DFrom 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?
Ag_form.hasRoleExactly('admin')
Bgs.hasRole('admin')
Cg_form.hasRole('admin')
Dgs.hasRoleExactly('admin')
Identify the incorrect statement about Delegated Development in ServiceNow.
AAdministrators can grant non-admin users the ability to develop global applications.
BAdministrators can specify which application file types the developer can access.
CAdministrators can grant the developer access to script fields.
DAdministrators can grant the developer access to security records.
Which one of the following is true regarding Application Scope?
AAll applications are automatically part of the Global scope
BApplications downloaded from 3 party ServiceNow application developers cannot have naming conflicts rd
CAny developer can edit any application
DDevelopers 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?
AThe table and its data are not accessible using web services
BAny Business Rule can read, write, delete, and update from the table
COnly artifacts in the table's application can read from the table
DAll application scopes can read from the table
Which one of the following is NOT a purpose of application scoping?
AProvide a relationship between application artifacts
BProvide a way of tracking the user who developed an application
CProvide a namespace (prefix and scope name) to prevent cross application name collisions
DProvide controls for how scripts from another scope can alter tables in a scoped application
Which one of the following is part of the client-side scripting API?