0% found this document useful (0 votes)
250 views28 pages

Servicenow Application Developer Exam New-Practice Test Set 7

The document contains practice questions and answers for the ServiceNow Application Developer Exam. The questions cover topics like application access configuration, variable types for service catalog items, script types that execute on the server, debugging client-side scripts, access control evaluation order, and how ServiceNow matches inbound emails to existing records.

Uploaded by

Apoorv Diwan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
250 views28 pages

Servicenow Application Developer Exam New-Practice Test Set 7

The document contains practice questions and answers for the ServiceNow Application Developer Exam. The questions cover topics like application access configuration, variable types for service catalog items, script types that execute on the server, debugging client-side scripts, access control evaluation order, and how ServiceNow matches inbound emails to existing records.

Uploaded by

Apoorv Diwan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 28

Tools Topics

1. Servicenow Application Developer Exam New-Practice


Test Set 7

Servicenow Application Developer Exam New-


Practice Test Set 7
How must Application Access be configured to prevent all other private application scopes
from creating configuration records on an application's data tables?

Options are :

Set the Accessible from a field value to This application scope only and de-select the Allow access
to this table via web services option

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 the field value to All application scopes and de-select the Can create
option

Set the Accessible from field value to This application scope only
(Correct)

Answer :Set the Accessible from field value to This application scope only

Which three Variable Types can be added to a Service Catalog Item?

Options are :

Multiple Choice, Select Box, and Checkbox


(Correct)

Number List, Single Line Text, and Reference

True/False, Multiple Choice, and Ordered

True/False, Checkbox, and Number List

Answer :Multiple Choice, Select Box, and Checkbox

Identify the script types that always execute on the server.

Options are :
x
UI Actions
(Correct)

Business Rules
(Correct)
ToolsScript Actions
(Correct) Topicsx
Scheduled Jobs
(Correct)

Answer :UI Actions


Business Rules
Script Actions
Scheduled Jobs

Take Quiz :

Also Read : ServiceNow Certified CIS CSM Test Exams (New York Release) Set 7

All client-side script methods such as g_form.flash(), work on both desktop and mobile
applications.

Options are :

TRUE

FALSE
(Correct)

Answer :FALSE

When ServiceNow receives an inbound email it attempts to match the sender to a user
record. Which one of the following is NOT true?

Options are :

Inbound Action scripts can reference the user using methods such as gs.getUserName()

If automatic user creation is disabled, the Guest user is impersonated x


If no match is found the email is sent to the Inbox Junk folder
(Correct)
If a match is found, the user is impersonated for the execution of the Inbound Actions
Tools
Answer :If no match is found the email is sent to the Inbox Junk folder
Topicsx

When creating new application files in a scoped application, cross scope access is turned
on by default in which of the following?

Options are :

Table

REST message

Script Include

Workflow
(Correct)

Answer :Workflow

Take Quiz :

Also Read : ServiceNow Certified System Administrator Practice Exam 2019 Set 5

When evaluating access controls, Servicenow searches:

Options are :

for the most generic match to the most specific match

only for matches on the current field


x
for the most specific match to the most generic match
(Correct)
Tools :for the most specific match to the most generic match
Answer Topicsx

Custom Applications are automatically added to the mobile Application Navigator

Options are :

FALSE
(Correct)

TRUE

Answer :FALSE

Which one of the following is NOT a debugging strategy for client-side scripts?

Options are :

g_form.addInfoMessage()

gs.log()
(Correct)

Field Watcher

jslog()

Answer :gs.log()

Take Quiz :

Also Read : Servicenow Application Developer Exam New-Practice Test Set 9

x
Delegated development allows non-administrators to develop applications in the global
scope
Tools Topicsx
Options are :

FALSE
(Correct)

TRUE

Answer :FALSE

An Access Control list for a table may include a table.None Access Control or a
table.*Access Control but never both.

Options are :

TRUE

FALSE
(Correct)

Answer :FALSE

Take Quiz :

Also Read : ServiceNow Certified CIS CSM Test Exams (New York Release) Set 11

In an Access Control, the script field returns false if there is no script.

Options are :

TRUE x

FALSE
(Correct)
Tools :FALSE
Answer Topicsx

When Debug Security Rules is enabled, Access Control debugging is written to the current
page. Which graphic indicates access was granted?

Options are :

A green circle with a white checkmark


(Correct)

A blue circle with a white checkmark

A red circle with a white checkmark

A grey circle with a white checkmark

Answer :A green circle with a white checkmark

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?

Options are :

Conditions, Script, Roles

Conditions, Roles, Script

Script, Conditions, Roles

Roles, Conditions, Script


(Correct)

Answer :Roles, Conditions, Script

Take Quiz :

Also Read : ServiceNow Certified System Administrator CSA Practice Test Set 14

x
Tools Topicsx

How must Application Access be configured to prevent all other private application scopes
from creating configuration records on an application's data tables?

Options are :

Set the Accessible from a 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
(Correct)

Set the Accessible from the field value to All application scopes and de-select the Can create
option

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

Answer :Set the Accessible from field value to This application scope only

A server side script using the gs.hasRole() method is more secure than a client-side script
using the g_user.hasRole() method

Options are :

TRUE
(Correct)

FALSE

Answer :TRUE

In a Business Rule, which one of the following return the sys_id of the currently logged in
user?

Options are :

g_form.getUserID()

gs.getUserID()
(Correct)

gs.getUserSysID()

g_form.getUserSysID()

Answer :gs.getUserID()

Take Quiz : x

Also Read : ServiceNow Certified System Administrator Practice Exam 2019 Set 10
Tools Topicsx

To see what scripts, reports, and other application artefacts will be in a published
application:

Options are :

Examine the Application Files Related List in the application to be published


(Correct)

Open the artefact records individually to verify the value in the Application field

Enter the name of the Application in the Global search field.

Open the list of Update Sets for the instance.

Answer :Examine the Application Files Related List in the application to be published

In a SOAP Message Function, what syntax indicates a variable to pass when the function is
called?

Options are :

$(variable_name)
(Correct)

current.variable_name

.do?WSDL

Answer :$(variable_name)

What is the Event Registry?


x
Options are :

The Event Log which lists all Events that have been generated
Tools Topicsx
A table containing a record for every Event known to the ServiceNow system which allows
ServiceNow to react when Events are generated
(Correct)

The method used in server side scripts to generate Events and pass parameters

A workflow which is launched every time an Event is generated; used in debug Events

Answer :A table containing a record for every Event known to the ServiceNow system which allows
ServiceNow to react when Events are generated

Take Quiz :

Also Read : ServiceNow Certified System Administrator CSA Practice Test Set 16

Which one of the following objects CANNOT be used in Script Action Script?

Options are :

GlideRecord

current

event

previous
(Correct)

Answer :previous

How does ServiceNow match inbound email to existing records? x

Options are :
ToolsWatermark
(Correct) Topicsx
sys-id

Subject line

Record link

Answer :Watermark

When ServiceNow receives an inbound email it attempts to match the sender to a user
record. Which one of the following is NOT true?

Options are :

Inbound Action scripts can reference the user using methods such as gs.getUserName()

If a match is found, the user is impersonated for the execution of the Inbound Actions

If automatic user creation is disabled, the Guest user is impersonated

If no match is found the email is sent to the Inbox Junk folder


(Correct)

Answer :If no match is found the email is sent to the Inbox Junk folder

Take Quiz :

Also Read : ServiceNow Certified System Administrator Practice Exam 2019 Set 7

Which of the following statements is not true for the Form Designer? x

Options are :
the x
ToolsTo add a field to the form layout, drag the field from the Fields tab to the desired destination on
Topics
form.
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.

To remove a field from the form layout, hover over the field to enable Action buttons, and select
the Delete(X) button.

To add a section to the form layout, drag it from the Field Types tab to the desired destination on
the form.
(Correct)

Answer :To add a section to the form layout, drag it from the Field Types tab to the desired
destination on the form.

Which Application Access configuration field(s) are NOT available if the Can read
configuration field is NOT selected?

Options are :

All access to this table via web services

Can read does not affect the availability of other Application Access fields

Can create, Can update, and Can delete


(Correct)

Allow configuration

Answer :Can create, Can update, and Can 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?

Options are :

This option restricts the ability to delete records via web services but records can always be read

This option restricts access only to SOAP web services but does not apply to REST

Even when not selected, users with the correct permissions can use web services to access the
table's records.

The user performing the query via web services must have the correct permissions to access the
table's records
(Correct)

Answer :The user performing the query via web services must have the correct permissions to
access the table's records

Take Quiz :

x
Also Read : ServiceNow Certified CIS CSM Test Exams (New York Release) Set 9
Tools Topicsx

When creating new application files in a scoped application, cross scope access is turned
on by default in which of the following?

Options are :

Workflow
(Correct)

Script Include

Table

REST message

Answer :Workflow

One of the uses of the ServiceNow REST API Explorer is:

Options are :

Practice using REST to interact with public data providers

Create sample code for sending REST requests to ServiceNow


(Correct)

Convert SOAP Message functions to REST methods

Find resources on the web for learning about REST

Answer :Create sample code for sending REST requests to ServiceNow

Which of the following methods is NOT part of the ServiceNow Rest API?

Options are : x
COPY
(Correct)

GET
Tools Topicsx
POST

DELETE

Answer :COPY

Take Quiz :

Also Read : Servicenow Application Developer Exam New-Practice Test Set 6

When configuring a module, what does the Override application menu roles configuration
option do?

Options are :

Admin is given access to the module even if Access Controls would ordinarily prevent access

Users with access to the application menus can see the module even if they don't have the module
role

Self-Service users can access the module even though they do not have roles

Users with the module role but without access to the application menu access the module
(Correct)

Answer :Users with the module role but without access to the application menu access the module

x
Tools Topicsx

Recommended Reading

☯ ServiceNow Certified CIS CSM Test Exams (New York Release) Set 10

☯ ServiceNow Certified System Administrator CSA Practice Test Set 5

☯ ServiceNow Certified System Administrator CSA Practice Test Set 13

☯ ServiceNow Certified CIS CSM Test Exams (New York Release) Set 11

☯ ServiceNow Certified CIS CSM Test Exams (New York Release) Set 1

☯ Servicenow Application Developer Exam New-Practice Test Set 10

☯ ServiceNow Certified System Administrator CSA Practice Test Set 8

☯ Servicenow Application Developer Exam New-Practice Test Set 1

☯ Servicenow Application Developer Exam New-Practice Test Set 5

☯ ServiceNow Certified System Administrator CSA Practice Test Set 2

☯ Servicenow Application Developer Exam New-Practice Test Set 8

☯ ServiceNow Certified System Administrator CSA Practice Test Set 14

Comment / Suggestion Section

Enter Name

Enter email ( Optional for updates )

Comment
x
Tools Suggest Us Topicsx

Point our Mistakes and Post Your Suggestions

report this ad

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

x
Tools Topicsx

You might also like