0% found this document useful (0 votes)
156 views31 pages

Servicenow Application Developer Exam New-Practice Test Set 4

The document provides practice questions and answers for the ServiceNow Application Developer exam. It includes multiple choice questions testing knowledge of topics like UI policies, inbound action scripts, flow designer capabilities, application fit criteria, client-side scripting APIs, email notifications, source control operations, form designer features, record producer scripts, delegated development, business rule objects, application scoping, and access control configurations.

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)
156 views31 pages

Servicenow Application Developer Exam New-Practice Test Set 4

The document provides practice questions and answers for the ServiceNow Application Developer exam. It includes multiple choice questions testing knowledge of topics like UI policies, inbound action scripts, flow designer capabilities, application fit criteria, client-side scripting APIs, email notifications, source control operations, form designer features, record producer scripts, delegated development, business rule objects, application scoping, and access control configurations.

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/ 31

Tools Topics

1. Servicenow Application Developer Exam New-Practice


Test Set 4

Servicenow Application Developer Exam New-


Practice Test Set 4
Which one of the following is true?

Options are :

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


(Correct)

A UI Policy's Actions and Scripts execute at the same time

A UI Policy's Actions execute before the UI Policy's Scripts

Answer :A UI Policy's Scripts execute before the UI Policy's Actions

Which objects can be used in Inbound Action scripts?

Options are :

current and event x

current and email


(Correct)

current and previous

current and producer

Answer :current and email

Which of the following is NOT supported by Flow Designer?


Tools Topicsx
Options are :

Call a subflow from a flow

Run a flow from a MetricBase Trigger

Test a flow with rollback


(Correct)

Use Delegated Developer

Answer :Test a flow with rollback

Take Quiz :

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

From the list below, identify one reason an application might NOT be a good fit with
ServiceNow. The application:
x

Options are :

Requires "as-is" use of low-level programming libraries


(Correct)

Requires reporting capabilities

Uses forms extensively to interact with data

Needs workflow to manage processes

Answer :Requires "as-is" use of low-level programming libraries


Toolsone of the following is part of the client-side script scripting API?
Which Topicsx

Options are :

GlideSystem object (gs)

current and previous objects

GlideUser object (g_user)


(Correct)

workflow.scratchpad

Answer :GlideUser object (g_user)

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.

Options are :

c, d

a,b,c
(Correct)

a, c , b, d

a,b,d

Answer :a,b,c
x
Take Quiz :

Also Read : ServiceNow Certified System Administrator CSA Practice Test Set 13
Tools Topicsx

Which source control operation is available from BOTH Studio and the Git Repository?

Options are :

Apply Remote Changes

Create Branch
(Correct)

Stash Local Changes

Edit Repository Configurations

Answer :Create Branch

Which of the following methods prints a message on a blue background to the top of the
current form by default?

Options are :

g_form.addInfoMsg()

g_form.showFieldMsg() x
g_form.addInfoMessage()
(Correct)

g_form.showFieldMessage()

Answer :g_form.addInfoMessage()

Which of the following are features of the ServiceNow integration with a Git repository?

Choose any 3:
Tools Topicsx

Options are :

Commit all local changes for an application to the git repository


(Correct)

Import application files from a Git repository


(Correct)

Create tags to permanently link to a version of an application


(Correct)

Pull or commit individual application files

Answer :Commit all local changes for an application to the git repository
Import application files
from a Git repository
Create tags to permanently link to a version of an application

Take Quiz :

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

Which one of the following is the baseline behavior of a table in a privately-scoped x


application?

Options are :

All application scopes can read from the table


(Correct)

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
Answer :All application scopes can read from the table
Tools Topicsx

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.

Options are :

a, b, c , d

b, c, d

a, b, c
(Correct)

a, b, d

Answer :a, b, c

What syntax is used in a Record Producer script to access values from Record Producer
form fields?

Options are :
x
current.field_name

producer.field_name

current.variable_name

producer.variable_name
(Correct)

Answer :producer.variable_name

Take Quiz :
Also Read : ServiceNow Customer Service Practice Tests Orlando Set 9
Tools Topicsx

Identify the incorrect statement about Delegated Development in ServiceNow.

Options are :

Administrators can grant the developer access to security records.

Administrators can specify which application file types the developer can access.

Administrators can grant the developer access to script fields.

Administrators can grant non-admin users the ability to develop global applications
(Correct)

Answer :Administrators can grant non-admin users the ability to develop global applications

Which of the following objects does a Display Business Rule NOT have access to?

x
Options are :

current

. GlideSystem

g_scratchpad

previous
(Correct)

Answer :previous

Which one of the following client-side scripts apply to Record Producers?


Tools Topicsx

Options are :

UI Scripts and Record Producer Scripts

UI Scripts and UI Actions

Catalog Client Scripts and Catalog UI Policies


(Correct)

Client Scripts and UI Policies

Answer :Catalog Client Scripts and Catalog UI Policies

Take Quiz :

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

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

Options are :

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


(Correct)

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

Open the list of Update Sets for the instance


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

Which one of the following is true regarding Application Scope?

Options are :

Any developer can edit any application

Applications downloaded from 3rd party ServiceNow application developers cannot have naming
conflicts
(Correct)

All applications are automatically part of the Global scope

Developers can choose the prefix for a scope's namespace

Answer :Applications downloaded from 3rd party ServiceNow application developers cannot have
naming conflicts

In a Business Rule, which one of the following returns true if the currently logged in user has
the 'admin' role?

Options are :

g_form.hasRoleExactly('admin')

gs.hasRole('admin')
(Correct)

g_form.hasRole('admin')

gs.hasRoleExactly('admin')

Answer :gs.hasRole('admin')

Take Quiz : x

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

When configuring an Access Control which has no condition or script, which one of the
following statements is NOT true?

Options are :

table.field will grant access to a specific field in a record

table.*will grant access to every field in a record

table.None will grant access to every record on the table

table.id will grant access to a specific record on the table


(Correct)

Answer :table.id will grant access to a specific record on the table

Modules must have a Link type. Which one of the following is a list of Link types?

Options are :

Assessment, List of Records, Separator, Timeline Page


(Correct)

List of Records, Content Page, Order, URL (from arguments:)

List of Records, Separator, Catalog Type, Roles

Assessment, List of Records, Content Page, Roles

Answer :Assessment, List of Records, Separator, Timeline Page


x
When debug security rules is enabled, access control debugging information is written to
the current page. Which graphic indicates access was granted?

Options are :

A blue circle with a white checkmark

A red circle with a white checkmark

A green circle with a white checkmark


(Correct)

A grey circle with a white checkmark


Answer :A green circle with a white checkmark
Tools Topicsx
Take Quiz :

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

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

Users with the module role but without access to the application menu access the module
(Correct)
x
Self-Service users can access the module even though they do not have roles

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

Application developers can change a ServiceNow instance's scope at any time.

Options are :

FALSE

TRUE
(Correct)

Answer :TRUE
Which
Toolsone of the following is true? Topicsx

Options are :

A UI Policy's Actions execute before the UI Policy's Scripts


(Correct)
A UI Policy's Actions and scripts execute at the same time

A UI Policy's scripts execute before the UI Policy's Actions

The execution order for a UI Policy's Scripts and Actions is determined at runtime

Answer :A UI Policy's Actions execute before the UI Policy's Scripts

Take Quiz :

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

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

A blue circle with a white checkmark

A green circle with a white checkmark


(Correct)

A red circle with a white checkmark

A grey circle with a white checkmark

Answer :A green circle with a white checkmark

Which one of the following objects CANNOT be used in Script Action Script?
Tools Topicsx
Options are :

previous
(Correct)
GlideRecord

current

event

Answer :previous

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

Options are :

Create sample code for sending REST requests to ServiceNow


(Correct)

Practice using REST to interact with public data providers

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

Take Quiz :

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

To see what scripts, reports, and other application artifacts will be in a published
application:
Tools are :
Options Topicsx

Open the list of Update Sets for the instance.

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

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


(Correct)

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

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

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

Options are :

FALSE
(Correct)

true

Answer :FALSE

Which one of the following is NOT part of the Form Designer?

Options are :

Form layout

Page header

Field navigator

Schema map
(Correct)

Answer :Schema map

Take Quiz :

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

Recommended Reading

☯ Servicenow Application Developer Exam New-Practice Test Set 5

☯ ServiceNow HRSD Implementation Specialist Tests Set 1

☯ ServiceNow Certified System Administrator CSA Practice Test Set 1

☯ ServiceNow Certified System Administrator Practice Exam 2019 Set 9

☯ Servicenow Application Developer Exam New-Practice Test Set 8

☯ ServiceNow Certified CIS CSM Test Exams (New York Release) Set 1
x
☯ ServiceNow Certified System Administrator CSA Practice Test Set 14

☯ ServiceNow Certified System Administrator Practice Exam 2019 Set 8

☯ ServiceNow Certified System Administrator Practice Exam 2019 Set 2

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

☯ ServiceNow Certified System Administrator CSA Practice Test Set 8

☯ ServiceNow Certified System Administrator Practice Exam 2019 Set 6


Tools Comment / Suggestion Section Topicsx

Enter Name

Enter email ( Optional for updates )

Comment

Suggest Us

Point our Mistakes and Post Your Suggestions

report this ad
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

x
Tools Topicsx

x
Tools Topicsx

You might also like