CAD Sample questions from internet
ServiceNow’s Certified Application Developer (CAD)
Preparation
ServiceNow’s
Certified Application Developer (CAD) exam Dumps – 1
NO.1 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 button
B. Use the Record Producer module
then add and configure all variables manually
C.Open the table in the Table records
and select the Add to Service Catalog Related Link
D.Open the table’s form, right-click
on the form header, and select the Create Record Producer menu item
Answer: C
NO.2 Which one of
the following is the baseline behavior of a table in a privately-scoped
application?
A. The table and its data are not accessible using web services
B. Any Business Rule can read, write,
delete, and update from the table
C.Only artifacts in the table’s
application can read from the table
D.All application scopes can read
from the table
Answer: D
NO.3 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
Answer: A
NO.4 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
Answer: A, D
NO.5 What is a
Module?
A. The functionality within an application menu such as opening a page in the
content frame or a separate tab or window
B. A group of menus, or pages,
providing related information and functionality to end- users
C.A way of helping users quickly
access information and services by filtering the items in the Application
Navigator
D.A web-based way of providing
software to end-users
Answer: A
NO.6 Identify the
incorrect statement about Delegated Development in ServiceNow.
A. Administrators can grant non-admin users the ability to develop global
applications
B. Administrators can specify which
application file types the developer can access.
C.Administrators can grant the
developer access to script fields.
D.Administrators can grant the
developer access to security records.
Answer: A
NO.7 Here is the
Business Rule script template:
This type of
JavaScript function is known as:
A. Constructor
B. Scoped
C. Anonymous
D.Self-invoking
Answer: D
NO.8 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. a, b, c, and d
B. a and b
C.b and c
D.a, b, and c
Answer: D
NO.9 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’)
Answer: B
NO.10 How must
Application Access be configured to prevent all other private application
scopes from creating configuration records on an application’s data tables?
A. 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
B. Set the Accessible from field
value to All application scopes and de-select the Can create option
C.Set the Accessible from field value
to This application scope only and de-select the Allow access to this table via
web services option
D.Set the Accessible from field value
to This application scope only
Answer: D
NO.11 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?
A. Business problem, data input/output, users/stakeholders, and process steps
B. Business problem, data
input/output, project schedule, and process steps
C.Business problem, data
input/output, users/stakeholders, and database capacity
D.Business problem,
users/stakeholders, available licenses, and database capacity
Answer: A
NO.12 To see what
scripts, reports, and other application artifacts will be in a published
application:
A. Enter the name of the Application in 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
Answer: C
NO.13 Application
developers configure ServiceNow using industry standard JavaScript to…
A. Enable the right-click to edit the context menus on applications in the
navigator
B. Extend and add functionality
C.Customize the organization’s
company logo and banner text
D.Configure the outgoing email
display name
Answer: B
NO.14 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. a, b and c
B. a, b, and d
C.b, c and d
D.a, c and d
Answer: A
NO.15 Which of the
following CANNOT be debugged using the Field Watcher?
A. Business Rules
B. Script Includes
C. Client Scripts
D.Access Controls
Answer: B
NO.16 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
E. Automated Test Framework
Answer: B, E
NO.17 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 fields
B. The new table inherits the
functionality built into the parent table
C.The new table inherits all of the
fields from the parent table
D.You must script and configure all
required behaviors
Answer: D
NO.18 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.
Answer: B, D, E
NO.19 Which of the
following is NOT a trigger type in Flow Designer?
A. Outbound Email
B. Application
C.Record
D.Schedule
Answer: A
NO.20 One of the
uses of the ServiceNow REST API Explorer is:
A. Practice using REST to interact with public data providers
B. Find resources on the web for
learning about REST
C.Convert SOAP Message functions to
REST methods
D.Create sample code for sending REST
requests to ServiceNow
Answer: D
NO.21 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
Answer: C
NO.22 When
configuring an Access Control which has no condition or script, which one of
the following statements is NOT true?
A. table.*will grant access to every field in a record
B. table.None will grant access to
every record on the table
C.table.field will grant access to a
specific field in a record
D.table.id will grant access to a
specific record on the table
Answer: D
NO.23 Which source
control operation is available from BOTH Studio and the Git Repository?
A. Create Branch
B. Apply Remote Changes
C.Stash Local Changes
D.Edit Repository Configurations
Answer: A
NO.24 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
Answer: B
NO.25 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
Answer: C
NO.26 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
Answer: C
NO.27 Which Report
Type(s) can be created by right-clicking on a column header in a table’s list?
A. Bar Chart, Pie Chart, Histogram, and Line
B. Bar Chart
C.Bar Chart, Pie Chart, and Histogram
D.Bar Chart and Pie Chart
Answer: D
NO.28 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
Answer: B
NO.29 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
Answer: B
NO.30 Which of the
following methods are useful in Access Control scripts?
A. g_user.hasRole() and current.isNewRecord()
B. gs.hasRole() and
current.isNewRecord()
C.g_user.hasRole() and
current.isNew()
D.gs.hasRole() and current.isNew()
Answer: B
NO.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
Answer: B
NO.32 Which one of
the following is part of the client-side scripting API?
A. workflow.scratchpad
B. GlideUser object (g_user)
C.current and previous objects
D.GlideSystem object (gs)
Answer: B
NO.33 Which objects
can you use in a Scheduled Script Execution (Scheduled Job) script?
A. GlideRecord and current
B. GlideUser and GlideRecord
C.GlideSystem and GlideRecord
D.GlideSystem and current
Answer: C
NO.34 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
Answer: C
NO.35 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. a, b, c, and d
B. b, c, and d
C. a, b, and d
D. a, b, and c
Answer: D
NO.36 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()
Answer: B
NO.37 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
Answer: A
NO.38 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’)
Answer: B
NO.39 When a
ServiceNow instance requests information from a web service, ServiceNow is the
web service:
A. Publisher
B. Specialist
C.Provider
D. Consumer
Answer: D
NO.40 Which of the
following objects does a Display Business Rule NOT have access to?
A. previous
B. GlideSystem
C.g_scratchpad
D.current
Answer: A
NO.41 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()
Answer: A
NO.42 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
Answer: B
NO.43 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
Answer: D
NO.44 Which one of
the following is true regarding Application Scope?
A. All applications are automatically part of the Global scope
B. Applications downloaded from 3rd
party ServiceNow application developers cannot have naming conflicts
C.Any developer can edit any
application
D.Developers can choose the prefix
for a scope’s namespace
Answer: B
NO.45 Which objects
can be used in Inbound Action scripts?
A. current and previous
B. current and email
C.current and event
D.current and producer
Answer: B
Ganesh – Correct
Answer is A most likely.
NO.46 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
Answer: B
NO.47 Which one of
the following client-side scripts apply to Record Producers?
A. Catalog Client Scripts and Catalog UI Policies
B. UI Scripts and UI Actions
C.UI Scripts and Record Producer
Scripts
D.Client Scripts and UI Policies
Answer: A
NO.48 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
Answer: B
NO.49 Which one of
the following is NOT a UI Action type?
A. List choice
B. Form button
C. List banner button
D.Form choice
Answer: D
NO.50 Which one of
the following is NOT a purpose of application scoping?
A. Provide a relationship between application artifacts
B. Provide a way of tracking the user
who developed an application
C.Provide a namespace (prefix and scope
name) to prevent cross application name collisions
D.Provide controls for how scripts
from another scope can alter tables in a scoped application
Answer: B
NO.51 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
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
Answer: C
NO.52 When
configuring the content of an Email Notification, which syntax should be used
to reference the properties of an event triggering the Notification? (Check It
Once)
A. ${event.}
B. ${current.}
C.${property
name>.getDisplayValue()}
D.${gs.}
Answer: A
NO.53 A scoped
application containing Flow Designer content dedicated to a particular
application is called a(n):
A. Spoke
B. Bundle
C.Action Way
D.Flow
Answer: A
NO.54 The source
control operation used to store local changes on an instance for later
application is called a(n).
A. Branch
B. Tag
C.Stash
D.Update set
Answer: C
NO.55 Which one of
the following is NOT required to link a ServiceNow application to a Git
repository?
A. Password
B. URL
C.User name
D.Application name
Answer: D
NO.56 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
Answer: B
NO.57 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
Answer: A, C
NO.58 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()
Answer: D
NO.59 If the Create
module field is selected when creating a table, what is the new module’s
default behavior?
A. Open an empty form so new records can be created
B. Open a link to a wiki article with
instructions on how to customize the behavior of the new module
C.Display an empty homepage for the
application
D.Display a list of all records from
the table
Answer: D
NO.60 How many
applications menus can an application have? (Check It Once)
A. 3, one for an application’s user modules, one for an application’s
administrator modules, and one for the ServiceNow administrator’s modules
B. As many as the application design
requires
C. 2, one for an application’s user
modules and one for an application’s administrator modules
D. 1, which is used for all
application modules
Answer: D
ServiceNow’s
Certified Application Developer (CAD) exam Dumps – 2
Question #:1
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
Answer: B
Question #:2
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
Answer: B
Question #:3
Which one of the
following is NOT a UI Action type?
A. List choice
B. Form button
C. List
banner button
D. Form choice
Answer: D
Question #:4
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
Answer: B
Question #:5
Which one of the
following is NOT a debugging strategy for client-side scripts?
A. addInfoMessage()
B. Field
Watcher
C. jslog()
D. gs.log()
Answer: D
Question #:6
Which of the
following methods are useful in Access Control scripts?
A. g_user.hasRole()
and current.isNewRecord()
B.
gs.hasRole() and current.isNewRecord()
C.
g_user.hasRole() and current.isNew()
D. gs.hasRole() and
current.isNew()
Answer: B
Question #:7
Which objects can
be used in Inbound Action scripts?
A. current and
previous
B. current
and email
C. current and
event
D. current and
producer
Answer: B
Question #:8
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 modules
B. As many as
the application design requires
C. 2, one for
an application’s user modules and one for an application’s administrator
modules
D. 1, which is used for
all application modules
Answer: B
Question #:9
What is a Module?
A. The functionality
within an application menu such as opening a page in the content frame or a
separate tab or window
B. A group of
menus, or pages, providing related information and functionality to end-users
C. A way of
helping users quickly access information and services by filtering the items in
the Application Navigator
D. A web-based way
of providing software to end-users
Answer: C
Question #:10
When a ServiceNow
instance requests information from a web service, ServiceNow is the web
service:
A. Publisher
B. Specialist
C. Provider
D. Consumer
Answer: D
Question #:11
To see what
scripts, reports, and other application artifacts will be in a published
application:
A. Enter the name
of the Application in 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
Answer: B
Question #:12
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
Answer: B
Question #:13
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’)
Answer: B
Question #:14
Which of the
following CANNOT be debugged using the Field Watcher?
A. Business Rules
B. Script
Includes
C.
Client Scripts
D. Access Controls
Answer: B
Question #:15
A scoped
application containing Flow Designer content dedicated to a particular
application is called a(n):
A. Spoke
B. Bundle
C. Action
D. Flow
Answer: A
Question #:16
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’)
Answer: B
Question #:17
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.
Answer: A B D
Question #:18
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 fields
B. The new
table inherits the functionality built into the parent table
C. The new
table inherits all of the fields from the parent table
D. You must script
and configure all required behaviors
Answer: B
Question
#:19
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
Answer: B
Question
#:20
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
Answer: C
Question
#:21
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
Answer: C
Question
#:22
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()
Answer: A
Question
#:23
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
Answer: C
Question
#:24
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
Answer: B
Question
#:25
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
Answer: A
Question
#:26
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>}
Answer: A
Question
#:27
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
Answer: B
Question
#:28
Which one of the
following client-side scripts apply to Record Producers?
A. Catalog Client
Scripts and Catalog UI Policies
B. UI Scripts
and UI Actions
C. UI Scripts
and Record Producer Scripts
D. Client Scripts
and UI Policies
Answer: A
Question
#:29
Which objects can
you use in a Scheduled Script Execution (Scheduled Job) script?
A. GlideRecord and
current
B. GlideUser
and GlideRecord
C.
GlideSystem and GlideRecord
D. GlideSystem and
current
Answer: C
Question
#:30
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
Answer: A
Question
#:31
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
Answer: A, C
Question
#:32
Which one of the
following is true regarding Application Scope?
A. All applications
are automatically part of the Global scope
B.
Applications downloaded from 3rd party ServiceNow application developers cannot
have naming conflicts
C. Any
developer can edit any application
D. Developers can
choose the prefix for a scope’s namespace
Answer: B
Question
#:33
Which of the
following is NOT a trigger type in Flow Designer?
A. Outbound Email
B.
Application
C. Record
D. Schedule
Answer: A
Question
#:34
Which Report
Type(s) can be created by right-clicking on a column header in a table’s list?
A. Bar Chart, Pie
Chart, Histogram, and Line
B. Bar Chart
C. Bar Chart,
Pie Chart, and Histogram
D. Bar Chart and
Pie Chart
Answer: D
Question
#:35
Which one of the
following is the baseline behavior of a table in a privately-scoped
application?
A. The table and
its data are not accessible using web services
B. Any
Business Rule can read, write, delete, and update from the table
C. Only
artifacts in the table’s application can read from the table
D. All application
scopes can read from the table
Answer: D
Question
#:36
Which one of the
following is part of the client-side scripting API?
A. scratchpad
B. GlideUser
object (g_user)
C. current
and previous objects
D. GlideSystem
object (gs)
Answer: B
Question
#:37
Which one of the
following is NOT a purpose of application scoping?
A. Provide a
relationship between application artifacts
B. Provide a
way of tracking the user who developed an application
C. Provide a
namespace (prefix and scope name) to prevent cross application name collisions
D. Provide controls
for how scripts from another scope can alter tables in a scoped application
Answer: A
Question
#:38
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
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
Answer: C
Question
#:39
If the Create
module field is selected when creating a table, what is the new module’s
default behavior?
A. Open an empty
form so new records can be created
B. Open a
link to a wiki article with instructions on how to customize the behavior of
the new module
C. Display an
empty homepage for the application
D. Display a list
of all records from the table
Answer: D
Question
#:40
From the list
below, identify one reason an application might NOT be a good fit with
ServiceNow, The application:
1.
Needs workflow to manage processes
2.
Requires “as-is” use of low-level programming libraries
3.
Requires reporting capabilities
4. Uses
forms extensively to interact with data
Answer: B
Question
#:41
Which one of the
following is true for a Script Include with a Protection Policy value of
Protected?
1. Any
user with the protected_edit role can see and edit the Script Include
2. The
Protection policy option can only be enabled by a user with the admin role
3. The
Protection Policy is applied only if the glide.app.apply_protection system
property value is true
4. The
Protection Policy is applied only if the application is downloaded from the
ServiceNow App Store
Answer: D
Question
#:42
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. a, b, c, and d
B. a and b
C. b and c
D. a, b, and c
Answer: B
Question
#:43
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
Answer: B
Question
#:44
Which one of the
following is NOT required to link a ServiceNow application to a Git repository?
A. Password
B. URL
C. User name
D. Application name
Answer: D
Question
#:45
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()
Answer: B
Question
#:46
One of the uses of
the ServiceNow REST API Explorer is:
A. Practice using
REST to interact with public data providers
B. Find
resources on the web for learning about REST
C. Convert
SOAP Message functions to REST methods
D. Create sample
code for sending REST requests to ServiceNow
Answer: D
Question
#:47
When configuring an
Access Control which has no condition or script, which one of the following
statements is NOT true?
A. table.*will
grant access to every field in a record
B. table.None
will grant access to every record on the table
C.
table.field will grant access to a specific field in a record
D. table.id will
grant access to a specific record on the table
Answer: D
Question
#:48
How must
Application Access be configured to prevent all other private application
scopes from creating configuration records on an application’s data tables?
A. 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
B. Set the
Accessible from field value to All application scopes and de-select the Can
create option
C. Set the
Accessible from field value to This application scope only and de-select the
Allow access to this table via web services option
D. Set the
Accessible from field value to This application scope only
Answer: D
Question
#:49
Which source
control operation is available from BOTH Studio and the Git Repository?
A. Create Branch
B. Apply
Remote Changes
C. Stash
Local Changes
D. Edit Repository
Configurations
Answer: A
Question #:50
Identify the
incorrect statement about Delegated Development in ServiceNow.
A. Administrators
can grant non-admin users the ability to develop global applications.
B.
Administrators can specify which application file types the developer can
access.
C.
Administrators can grant the developer access to script fields.
D. Administrators
can grant the developer access to security records.
Answer: A
Question
#:51
Here is the
Business Rule script template:
This type of
JavaScript function is known as:
A. Constructor
B. Scoped
C. Anonymous
D. Self-invoking
Answer: D
Question
#:52
Which of the
following objects does a Display Business Rule NOT have access to?
A. previous
B.
GlideSystem
C.
g_scratchpad
D. current
Answer: A
Question
#:53
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. a, b and c
B. a, b, and
d
C. b, c and d
D. a, c and d
Answer: A
Question
#:54
The source control
operation used to store local changes on an instance for later application is
called .
A. Branch
B. Tag
C. Stash
D. Update set
Answer: C
Question
#:55
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
Answer: A, D
Question
#:56
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. a, b, c, and d
B. b, c, and
d
C. a, b, and
d
D. a, b, and c
Answer: D
Question
#:57
Application
developers configure ServiceNow using industry standard JavaScript to…
A. Enable the
right-click to edit the context menus on applications in the navigator
B. Extend and
add functionality
C. Customize
the organization’s company logo and banner text
D. Configure the
outgoing email display name
Answer: B
Question
#:58
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 button
B. Use the
Record Producer module then add and configure all variables manually
C. Open the
table in the Table records and select the Add to Service Catalog Related Link
D. Open the table’s
form, right-click on the form header, and select the Create Record Producer
menu item
Answer: C
Question
#:59
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?
A. Business
problem, data input/output, users/stakeholders, and process steps
B. Business
problem, data input/output, project schedule, and process steps
C. Business
problem, data input/output, users/stakeholders, and database capacity
D. Business
problem, users/stakeholders, available licenses, and database capacity
Answer: A
Question
#:60
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
Answer: C
ServiceNow’s
Certified Application Developer (CAD) exam Dumps – 3
1. When evaluating access ServiceNow searches and
evaluates
·
from the most
specific match to the most generic match
·
from the highest order number to the
lowest
·
from the lowest order number to the
highest
·
from the most generic match to the
most specific
2. For what process step could a mind map come into
play?
·
Objectives
·
Swim lanes
·
None of the listed options
·
Creating a document
3. Data policies are for form views. State True or
False
·
True
·
False
4. When debugging a developer can set breakpoints or
conditional log points to log messages to the console at specific lines. and
remove log points ..7hen they are done debugging them. Which system property
must be set to true to use log points?
·
glide.inndex_suggestion.debug
·
debugger.log.ui
·
uijs_can_debug
·
debug.log_point
5. In an email how do you call a parameter from an
event that invoked the email?
·
None of the listed options
·
property
·
event.parm
·
current property
6. With regard to email which of the below statements
about the recipients is correct?
·
It is a static list
of users and groups determined when the notification is created
·
It is a dynamic list of users and
groups determined when the email is sent
·
It is a list of email addresses
determined when the notification is created
·
It is a list of users and groups
determined dynamically in the script
7. Which of the following statements does NOT apply
when extending an existing table?
·
You should develop or write the
required
·
All of the parent
table records are copied to the new table
·
You must script and
configure all required behaviors.
·
You should make use of fields that
already exist in another
8. Tooltips help clarify what information a user
should enter State True or False
·
True
·
False
9. Which of the following are legitimate form
annotation types?
·
Text
·
Section Details
·
Info Box Blue
·
Info Box Yellow
10. How can we add the ‘Add the data’ option in
ServiceNow tables/databases?
·
Import sets
·
Java code
·
Using forms
·
Custom UI pages
11. What are the sections of the Form Designer?
·
Table. for types
·
None of the listed options
·
Field field
·
Header field
navigator form layout
12. Which of the following statements about GIT are
true?
·
It is a cloud-based
source control management system
·
It can use
different tools like GitHub. Gitorious. Bitbucket. or others
·
c Team Development uses Git to manage
versions
·
It uses
repositories and branching
13. When an application is created using Guided
Application Creator (GAC). what features does the application have?
·
Default access
controls are created
·
None of the listed options
·
It provides a visual interpretation
·
It displays data in the form of an
expandable list a
14. Which of the following is true about module
permissions?
·
You can configure the modules which
will appear in the application navigator
·
Modules are to be displayed even though
the logged-in user does not have the menu
·
They control access
to modules through roles.
·
None of the listed options
15. Which of the following describes the reasons for
scripting in ServiceNow?
·
It enhances the
user experience
·
It extends existing
functionality or adds new functionality to applications
·
You may automate
processes. add functionality. integrate your instance with an outside
application and more.
·
You can use scripts to extend your
instance beyond standard configurations
16. Which of the following performs debug logging on
the server side?
·
print ()
·
info ()
·
gsdebug ()
·
gs.log ()
17. Which option is not present when we are linking an
application from the source control?
·
URL
·
Username
·
Application name
·
Password
18. The source control operation used to store local changes
on an instance for later application is called a (n).
·
commit
·
branch
·
spoke
·
stash
19. You are developing the MyApp application that has a
table. Table A. When the MyApp application is installed on an instance. you
want Table As records to be installed as part of the application. When will
Table As records be installed?
·
Table A will not get installed
·
Table A will be deleted from the
database view
·
Table A will not extend
·
Table A is Active
and extended from Task Table
20. is a graphical representation of the relationship
between
·
Histogram
·
Pyramid
·
Heatmap
·
Schema map
21. Which of the following is used to test in tablet
mode?
·
https/your-instance
service-now.com/$m.do
·
Tablet Development>
Switch to Tablet Mode
·
None of the listed options
·
https/your-instance.service-now.com/$tablet.do
22. Which of the following statements about the Team
Development application in ServiceNow is incorrect?
·
Team Development
uses Git to manage versions.
·
The dashboard is a central location
for all Team Development activities.
·
Team Development allows for branching
operations. including pushing and pulling record versions between instances.
·
Developers can compare a development
instance to another development instance.
23. Which platform feature can be used to determine the
relationships between a field in an import set table with a field in an
existing ServiceNow table?
·
Import set
·
Transform map
·
Auto map matching fields
·
Self-executing
24. Which of the following is supported by UI16?
·
Blackberry browser
·
Table browsers
·
Laptop browsers
·
Desktop interfaces
25. The user performing the query via web services must
have the correct permissions to access the tables
·
True
·
False
26. What is the purpose of the REST endpoint,
·
Used to develop, and save outbound
REST messages
·
Show script usage
·
Reusable in business rule email
notifications. and other server-side scripts
·
The URL of the
data to be retrieved, updated, or deleted
27. Which of the following are functions of validation
checks for workflows?
·
Preventing
publication if a problem is found
·
When the workflow executes for all
users and not just the user who edited the workflow
·
Locating problems
that will cause execution failure
·
Puts a workflow into the runtime
environment
28. Every workflow activity has a different
·
True
·
False
29. Workflows not in the current scope are read-only.
State True or False
·
True
·
False
30. Which of the following correctly describes display
business rules?
·
They support previous and current
g_User methods
·
They support the initialize function
()
·
They pass data from
the server side to a client-side script using the g_scratchpad object.
·
They support previous and current
functions
31. Which of the following process stakeholders?
·
Requestor and
fulfiller
·
Management
·
Application
administrator
·
User
32. Which of the following statements about mobile
lists are true?
·
You should view
record details in a split pane
·
Mobile lists do not
use the mobile list
·
You can create mobile lists layouts
in the Table Title module.
·
Do not display too
many fields in mobile lists or the list becomes hard to read and use.
33. Which of the following are baseline mobile
application special fields?
·
Address
·
Accident Location
·
c Barcode
·
Geolocation
34. What does hasRole (‘x_Myapp_scope’) return?
·
Returns warning message at the top of
the form
·
Returns false if the user has
x_Myapp_scope
·
Returns true if the
user has x_Myapp_scope or if the user has admin rule
·
An error will be generated
35. What role prefix indicates that a user has
application-specific developer permission?
·
sn_dd
·
dd_ c
·
sc_
·
dev_
36. Which of the following is not a report type in
ServiceNow?
·
Pyramid
·
List
·
Funnel
·
Trend
All are false but possibly expecting
answer b
37. Record producers are directly added to the mobile
catalog. State True or False
·
True
·
False
38. How many application menus can an application
have?
·
1
·
3
·
No limit to the number of menus that
can be created
·
5
39. An application’s scope is changeable. State True or
Fals
·
True
·
False
40. Properties values are typically admin configurable.
State True or False
·
True
·
False
41. In an ACL is Validated in debug, how is it
represented?
·
All of the listed options
·
Blue circle with a
white checkmark
·
Blue circle with a white X
·
Blue circle
42. How do you create a Data Policy from a UI Policy?
·
Open the Context menu, and click
·
On the UiPolicy form, you will find a
UiAction called Convert this to data policy
·
Under related list,
click on create data policy
·
Right click the header bar and select
categories > Data
43. Which of the following is used to display a message
for a specific field ?
·
ShowFieldMsg()
·
ShowFieldMessage()
·
ShowFieldMessage()
·
ShowFieldMsg()
44. How we can add the ‘Add the data’ option in
ServiceNow tables/databases?
·
Using forms
·
Custom UI pages
·
Java code
·
Import sets
45. Which of the following are allowed in client-side
scoped applications?
·
g_form
·
Anything starting with $
·
Document
·
GlideAjax
46. GlideForm and GlideUser are available for
server-side scripting.
·
True
·
False
47. All new tables have a default set of Fields.
·
True
·
False
48. Which of the following are supported smartphones?
·
Android
·
Apple
·
Blackberry
·
Linux
49. The script in the Record Producer runs when a
record is
·
deleted
·
inserted
·
loaded
·
updated
50. Which of the following is the baseline behavior of
a table in a privately scoped application?
·
Only an application with admin role
can access the table
·
All application
scopes can read from the table
·
Application scopes cannot read from
the table
·
None of the listed options
51. Which of the following are fields styles? Select
one or more:
·
Pivot
·
Field color
·
Text alignment
·
Font attributes
(bold, underline, line through etc.)
52. Which of the following describes None?
·
It applies to only one field on a
record
·
It applies to every field on a record
where there is no field-specific ACL
·
It applies to every record
·
It applies to a
table’s records: must have to view a table’s list or form
53. With regard to ATF’s Custom UI Steps, why are form
field labels untestable field components?
·
Form field labels are new platform
features
·
Form field labels are not settable or
clickable
·
Form field labels are testable by other test step categories
·
Form field labels are inaccessible
from DOM
54. Which of the following statements does NOT apply
when extending an existing table?
·
All of the parent
table records are copied to the new
·
You should develop or write the
required functionality.
·
You must script and
configure all required behaviors.
·
You should make use of fields that
already exist in another table.
55. If Can Read and Can Update are set for a table
represented by myObj, which of the following are not allowed? (Select one or
more)
·
myObj insert();
·
deleteMultiple()
·
update();
·
deleteRecord();
56. Which of the following describes Scripting
Assistance?
·
Access to all fields where there is
no field-specific access control
·
Dot walking
·
Displays a list of
selectable elements in a script field
·
Displays a list of variables in a
script field
1. Which or the following are lade controls? Select
one or more
·
Mobile
·
Security
·
Extensibility
·
Numbering
58. Which of the below is used to pass value when
sending a SOAP message?
·
<$variable>
·
${variable}
·
variable
·
$variable
59. How do you query records in ServiceNow? Select one
or more:
·
_query()
·
.query()
·
get()
·
query()
60. The script in the Record Producer runs when a
record is
·
inserted
·
updated
·
deleted
·
loaded
61. An application’s artifacts exist within the
application’s scope. State True or False
·
True
·
False
62. Home pages are visible on the mobile version State
True or False
·
True
·
False
63. Record producers are directly added to the mobile
catalog State True or False
·
True
·
False
64. Which of the following are states of a workflow?
(Select one or more)
·
Unpublished
·
Published
·
Checked out
·
Private
65. Which type of charts can be created from list view?
·
Pie, Donut, Histogram, Line
·
None of the listed options
·
Pie, Donut
·
Pie, Bar
66. System properties can use references as a data
·
True
·
False
67. Which roles grant access to a source control
repository operations such as importing applications from source control or
linking an application to source control? Select one or more
·
Git_admin
·
source_control_admin
·
Admin
·
source_control
68. Which of the following capabilities the flow
designer does not have? Select one or more
·
Flow testing with
rollback
·
ATF
·
Environment
·
Notification
69. Which of the following are legitimate development
use cases? Select one or more
·
Extending a 3rd party
scoped application
·
Migration from the global scope into
a scoped application
·
Building a new
scoped application
·
Extending a ServiceNow native
application in the global scope
ServiceNow’s
Certified Application Developer (CAD) exam Dumps – 4
1. How are debug
business rules(details) different from the debug business rules?
ANS: old changes and new
changes in the fields are shown
2. Which gives the
information to help users in filling the form?
ANS: Annotations
3. Table.none ->
Admin and ITIL Table.u_field_3 -> Admin What ITIL can see?
ANS: All fields other than field3
4. ACL execution
order
ANS: Roles, conditions, Scripts
5. Which is not a
valid field type?
ANS: Date
6. which of the
following is correct?
ANS: get( ), _query( ), query( )
7. what is correct
about deleting fields in table?
ANS: user defined non inherited
fields gets deleted
8. Which type
should be used when the module should redirect to the Record Producer
form
ANS: URL(form arguments)
9. gs.eventQueue()
is used for generating the events. Then the response will be:
ANS: Email notifications and Script
actions
10. Which platform
feature can be used to determine the relationships between field in an Import
Set table to field in an existing ServiceNow table?
ANS: Transform Map
11. When creating
new application files in a scoped application, cross scope access is turned on
by default in which of the following?
ANS: Table
12. When evaluating
Access Controls, ServiceNow searches and evaluates
ANS: From the most specific match to
the most generic match
13. Which Report
Type(s) can be created by right-clicking on a column header in a table’s
list?
ANS: Bar Chart and Pie Chart
14. Which of the
following methods are useful in Access Control scripts?
ANS: gs.hasRole() and current.isNewRecord()
15. Modules must
have a Link type. Which one of the following is a list of Link types?
ANS: Assessment, List of Records,
Separator, Timeline Page
16. Which one of
the following is not part of the client-side scripting API?
ANS: Glide record
17. Which objects
can you use in a Scheduled Script Execution (Scheduled Job) script?
ANS: GlideSystem and GlideRecord
18. Which of the
following objects does a Display Business Rule NOT have access to?
ANS: previous
19. Which one of
the following is NOT a method used for logging messages in a server-side script
for a privately- scoped application?
ANS: gs.log()
20. Which one of
the following is true for a Script Include with a Protection Policy value of
Protected?
ANS: The Protection Policy is applied
only if the application is downloaded from the ServiceNow App Store
21. Which objects
can be used in Inbound Action scripts?
ANS: current and email
22. Which
Application Access configuration field(s) are NOT available if the Can read
configuration field is NOT selected?
ANS: Can create, Can update, and Can
delete
23. Which one of
the following is NOT a UI Action type?
ANS: Form choice
24. Which one of
the following is true for a table with the “Allow configuration” Application
Access option selected?
ANS: Out of scope applications can
create Business Rules for the table
25. When
configuring the content of an Email Notification, which syntax should be used
to reference the properties of an event triggering the Notification?
ANS: ${event.}
26. A scoped
application containing Flow Designer content dedicated to a particular
application is called a(n):
ANS: Spoke
27. The source
control operation used to store local changes on an instance for later
application is called a(n).
ANS: Stash
28. Which one of
the following is NOT required to link a ServiceNow application to a Git
repository?
ANS: Application name
29. Which roles
grant access to source control repository operations such as importing
applications from source control, or linking an application to source
control?
ANS: source_control Admin
30. Which one of
the following is NOT a debugging strategy for client-side scripts?
ANS: gs.log()
31. If the Create
module field is selected when creating a table, what is the new module’s default
behavior?
ANS: Display a list of all records
from the table
32. How many
applications menus can an application have?
ANS: 1
33. Why create
custom applications.
ANS a. To replace outdated,
inadequate, custom business applications and processes b. To extend
service delivery and management to all enterprise departments c. To
extend the value of service now
34. a studio
feature
ANS: Code search , Push to repository
35. Not available
in form designer
ANS: Schema Map
36. Organize fields
on a form
ANS: Sections
37. In SOAP
message, which syntax indicates a variable when the function is called –
ANS: ${variable_name}
38. Table.none
-> Admin and ITIL Table.* -> Admin Table.u_field_3 ->
ITIL What ITIL can see?
ANS: Field 3 only
39. Method used for
sysID
ANS: gs.getUserID()
40. Which one of
the following is the fastest way to create and configure a Record
Producer?
ANS. Open the table in the Table
records and select the Add to Service Catalog Related Link
41. Service Now can
EXPORT the data of file types?
ANS: a. Excel , CSV, REST, SOAP API
data
42. Task table
is
Ans. Parent and Base table
43. True for
application picker and application scope
Ans. Selecting application in the
picker sets the application scope
44. What are
benefits of storing the majority of an application?
ANS: only run when called ,the script
logic is hidden , changes to application logic made at single place
45. Which of the
following is not a way for data to be entered into a service now
application?
ANS: Java package call
46. Not a way to
install application
ANS: Copy form one instance to
another
47. Which one of
the following is the baseline behavior of a table in a privately-scoped
application?
ANS: All application scopes can read
from the table
48. When configuring
a module, what does the Override application menu roles configuration option
do?
ANS: Users with the module role but
without access to the application menu access the module
49. What are some
of the considerations to document as part of the business process?
ANS: Business problem, data
input/output, users/stakeholders, and process steps
50. To see what
scripts, reports, and other application artifacts will be in a published
application:
ANS: Examine the Application Files
Related List in the application to be published
51. Which of the
following CANNOT be debugged using the Field Watcher?
ANS: Script includes
52. Which of the
following is NOT supported by Flow Designer?
ANS: Test a flow with rollback Domain
separation
53. Which of the
following statements does NOT apply when extending an existing table?
ANS: You must script and configure
all required behaviors
54. One of the uses
of the ServiceNow REST API Explorer is
ANS: Create sample code for sending
REST requests to ServiceNow
55. Which server-side
object provides methods for working with dates opened when writing scripts in a
privately scoped application?
ANS: GlideDateTime
56. What is
NOT included in ServiceNow REST API?
ANS: COPY
57. Script
Actions are only triggered by events? T/F?
ANS: True
Comments
Post a Comment