Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: myex65

Home > ServiceNow > Certified Application Developer > CAD

CAD Certified Application Developer - ServiceNow Question and Answers

Question # 4

Which business requirements and process(es) should be documented as part of the application development plan?

Choose 4 answers

A.

Data input/output

B.

Business problem

C.

Project schedule

D.

Process steps

E.

Database capacity

F.

Users/stakeholders

G.

Available licenses

Full Access
Question # 5

On a form, which type of field has this icon which can be clicked, to see a preview of the associated record?

A.

Reference

B.

Lookup

C.

Preview

D.

Quickview

E.

Drilldown

F.

Snapshot

Full Access
Question # 6

Which one of the following is true for this script fragment?

g_user.hasRole(,x_my_app_user');

A.

The method returns true if the currently logged in user has the x_my_app_user role or the admin role

B.

The method returns false only if the currently logged in user has the x_my_app_user role

C.

There is no g_user.hasRole() method

D.

The method returns true only if the currently logged in user has the x_my_app_user role

Full Access
Question # 7

What is the purpose of the Application Picker?

A.

Select an application to run

B.

Select an application as a favorite in the Application Navigator

C.

Choose an application to edit and set the Application Scope

D.

Choose an application to download and install

Full Access
Question # 8

If a knowledge base has no access details specified, what users are able to read articles in that knowledge base?

A.

itil users

B.

Users with kb_user role

C.

Any active user

D.

No users

E.

Any user with an article's permalink

Full Access
Question # 9

Is it possible to change an application's scope?

A.

Yes, but only from global scope to private scope

B.

Yes it's possible.

C.

No, it's not possible.

D.

Yes. but only from private scope to global scope

Full Access
Question # 10

On what part of the ServiceNow instance, would you find the option to Impersonate User?

A.

User Menu

B.

Content Frame

C.

Application Navigator

D.

Module

Full Access
Question # 11

When writing a Client Script to provide feedback targeted at a specific field, which method should be used?

A.

g_form.showInfoMessage()

B.

g_form.showFieldMsg()

C.

g_form.addInfoMessage()

D.

g_form.addFieldMsg()

Full Access
Question # 12

In a privately-scoped application, which methods are used for logging messages in server-side scripts? (Choose 2 answers)

A.

gs.info()

B.

gs.debug()

C.

gs.iog()

D.

gs.error()

E.

gs.logError()

Full Access
Question # 13

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

Full Access
Question # 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

Full Access
Question # 15

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

Full Access
Question # 16

a. To replace outdated, inadequate, custom business applications and processes

b. To extend service delivery and management to all enterprise departments

c. To allow users full access to all ServiceNow tables, records, and fields

d. To extend the value of ServiceNow

A.

a, b, and c

B.

a, b, c, and d

C.

b, c, and d

D.

a, b, and d

Full Access
Question # 17

Client-side scripts manage what?

A.

Forms and Forms Fields

B.

Playbook access

C.

Database and backend

D.

User access

Full Access
Question # 18

How can an application link to a repository behind a firewall?

A.

This option is not supported.

B.

Link an application to source control through a MID Server.

C.

Link an application to source control through an access token.

D.

Link an application to source control with multi-factor authentication.

Full Access
Question # 19

Which database operations can be controlled with Application Access? (Choose 2 answers)

A.

Query

B.

Create

C.

Execute

D.

Update

Full Access
Question # 20

What are examples of Ul Actions relating to forms?

Choose 3 answers

A.

Form Buttons

B.

Form Context Menu

C.

Form Columns

D.

Form View

E.

Form Links

Full Access
Question # 21

An application called My App has a table, MyAppTable, with the following Application Access configuration:

    Accessible from: All application scopes

    Can read: Selected

    Can delete: Not selected

    Allow configuration: Selected

Which of the following is true based on this configuration?

A.

Any application developer can write a Business Rule which successfully deletes all records from the MyAppTable

B.

An application developer working in another privately scoped application can write a Business Rule for the MyAppTable which successfully deletes all records

C.

No Business Rule can be written which successfully deletes all records from the MyAppTable

D.

An application developer working in the My App scope can write a Business Rule for the MyAppTable which successfully deletes all records from the MyAppTable

Full Access
Question # 22

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()

Full Access
Question # 23

How does ServiceNow match inbound email to an existing record? (Choose 2 answers)

A.

Sys_id

B.

Record link

C.

Watermark

D.

Subject line with record number

Full Access
Question # 24

While on an Incident record, how would you add a Tag for "Special Handling" to the record?

A.

Click on the More options (...) icon, click Add Tag, type Special Handling, press enter

B.

On the Tag field, select Special Handling from the choice list

C.

On the Special Handling field check the box

D.

Click on the Context menu, select Add Tact, type Special Handling. press enter

Full Access
Question # 25

Which ServiceNow capability provides assistance to help users obtain information, make decisions, and perform common work tasks via a messaging interface?

A.

ServiceNow Messenger

B.

Knowledge Chat

C.

Virtual Agent

D.

Now Support

E.

Agent Workspace

Full Access
Question # 26

A developer wants to set up an application module that allows inserting new records into a table.

Which configuration option achieves this?

A.

Application

B.

Menu

C.

Table

D.

Link type

Full Access
Question # 27

Which statement correctly describes the differences between a Client Script and a Business Rule?

A.

A Client Scrip! executes on the client and a Business Rule executes on the server

B.

A Client Script executes before a record is loaded and a Business Rule executes after a record is updated

C.

A Client Script executes on the server and a Business Rule executes on the client

D.

A Client Script executes before a record is loaded and a Business Rule executes after a record is loaded

Full Access
Question # 28

Which class is NOT part of the Client side scoped APIs?

A.

GuideDialogWindow

B.

GuideAjex

C.

GuideRecord

D.

GuideForm

Full Access
Question # 29

Which actions can a Business Rule take without scripting?

A.

Set field values and query the database

B.

Set field values and add message

C.

Set field values and write to the system log

D.

Set field values and generate an event

Full Access
Question # 30

Your customer would like to create a new template to notify users who are affected by network outages at their site. Which module would you use to create a new notification?

A.

System Properties > Email > Settings

B.

User Preferences > Email > Notifications

C.

System Notification > Email > Notifications

D.

Click Gear > Notifications > New

E.

Administration > Notification Overview

Full Access
Question # 31

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

Full Access
Question # 32

What occurs when an existing table is extended in ServiceNow?

A.

The new table inherits the functionality built into the parent table.

B.

The new table does not inherit any of the fields from the parent table.

C.

You must script and configure all required behaviors.

D.

The table's Access Controls are ignored when determining access to the new table's records and fields.

Full Access
Question # 33

An app developer enables the "Allow access to this table via web services" option in Application Access. What is the result of this configuration?

A.

Users querying via web services can access table records, regardless of permissions

B.

Developers from other application scope can write scripts for this table

C.

A user having correct permissions, querying via web services can access table records

D.

Users are allowed to write table records but restricts delete via web services

Full Access
Question # 34

A manager wants to view a snapshot of month-end Sales performance data, as compared to Sales targets. In addition, the manager wants to be able to see those monthly numbers trended over time, and forecasted into the future. What capability do you suggest for this manager?

A.

Scheduled Reports, a custom snapshot table, and a Projection report

B.

Scheduled Reports and Excel

C.

Key Performance Indicators

D.

Performance Analytics

E.

Scheduled Reports a custom snapshot table and a Trend report

Full Access
Question # 35

What feature can track the amount of time that a task has been open, to ensure that tasks are completed within an allotted time?

A.

Task Escalation Clock

B.

Business Time Remaining

C.

Inactivity Monitor

D.

Service Level Agreements

E.

Response Time Clock

Full Access
Question # 36

Why would you build a custom app?

A.

To fulfill is specific use case on internal processes.

B.

To avoid using a code repository like GiotHub or GitLab

C.

To create a custom integration for a 3rd party system

D.

To replace servieNow base tables

Full Access
Question # 37

Which of the following is true for the Application Picker and Application Scope?

A.

Selecting application from the Application Picker does not set the Application Scope.

B.

Selecting Global in the Application Picker sets the Application Scope to incident

C.

Global is a reserved application which does not appear in the Application Picker

D.

Selecting an application from the Application Picker sets the Application Scope

Full Access
Question # 38

When creating an application through the Guided Application Creator, which of the following is a user experience option?

A.

Portal

B.

Mobile

C.

Self-service

D.

Workspace

Full Access
Question # 39

Which of the following steps can be used to import new data into ServiceNow from a spreadsheet?

A.

Select Data Source, Schedule Transform

B.

Load Data, Create Transform Map, Run Transform Most Voted

C.

Define Data Source, Select Transform Map, Run Transform

D.

Select Import Set, Select Transform Map, Run Transform

Full Access
Question # 40

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

Full Access
Question # 41

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

Full Access
Question # 42

When a ServiceNow instance requests information from a web service, ServiceNow is the web service:

A.

Publisher

B.

Specialist

C.

Provider

D.

Consumer

Full Access
Question # 43

What is the Endpoint when configuring a REST Message?

A.

The URI of the data to be accessed, queried, or modified

B.

The provider response indicates there is no data to send back

C.

The URI of the Webserver

D.

The command to the REST script to stop execution

Full Access
Question # 44

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

Full Access
Question # 45

A scoped application containing Flow Designer content dedicated to a particular application is called a(n):

A.

Spoke

B.

Bundle

C.

Action

D.

Flow

Full Access
Question # 46

Which of the following statements must evaluate to true for a user to pass an Access Control? (Choose 3 answers)

A.

The user must be granted access through a business rule.

B.

Conditions configured in the Access Control must evaluate to true.

C.

The user has one of the roles specified in the Required roles related list.

D.

Other matching Access Controls for the record evaluate to true.

E.

Scripts configured in the Access Control must evaluate to true.

Full Access
Question # 47

Which server-side API debug log method is available for scoped applications?

A.

gs.log()

B.

gs.print()

C.

gs.info()

D.

gs.debugLog()

Full Access
Question # 48

When building an extended table from a base table, which fields do you need to create?

Choose 2 answers

A.

The reference fields for the base table.

B.

The fields that are not in the base table

C.

The mandatory fields for the base table

D.

The fields that are specific to the extended table

Full Access
Question # 49

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

Full Access
Question # 50

How does the Application Picker interact with Application Scope in ServiceNow?

A.

Selecting Global in the Application Picker sets the Application Scope to Incident.

B.

Global is a reserved application which does not appear in the Application Picker.

C.

Selecting an application from the Application Picker does not set the Application Scope.

D.

Selecting an application from the Application Picker sets the Application Scope.

Full Access
Question # 51

Application developers can specify which ServiceNow page a user sees after submitting a new record using the Record Producer Ul. How is the page specified?

A.

Write an after Business Rule script for the Record Producer's table: window.redirect = "";

B.

Create an application property to store the URL

C.

Write a script in the Record Producer's Script field: producer.redirect = "";

D.

Configure the page in the Module that opens the Record Producer Ul

Full Access
Question # 52

When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?

A.

Upload spreadsheet

B.

Create table from template

C.

Extend a table

D.

Create table from scratch

Full Access
Question # 53

Which of the following GuideRecord methods run a query against a database table?

Choose 3 answers

A.

-query( )

B.

runQuery()

C.

query()

D.

-get()

E.

get(

Full Access
Question # 54

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

Full Access
Question # 55

What are examples of Ul Actions, relating to Lists?

Choose 4 answers

List Control

A.

List Buttons

B.

List Choices

C.

List Override

D.

List Links

E.

List Context Menu

Full Access
Question # 56

What is a workflow context?

A.

It is a checked out workflow which is being edited

B.

It is generated from a workflow version, executes activities, and follows transitions

C.

The table for which a workflow is defined plus any conditions such as "Active is true"

D.

The business reason or process for which a workflow is designed

Full Access
Question # 57

What module do you use to access the reports that are available to you?

A.

Reports > Overview

B.

Reports > View / Run

C.

Self-Service > My Dashboards

D.

Reports > Homepage

E.

Self-Service > My Reports

Full Access
Question # 58

You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A's records to be installed as part of the application.

Table A's records will be installed when:

A.

Table A is active and extends the Task table

B.

Table A's records are added to the application record using the Create Application Files context menu item

C.

Table A has an automatic number counter for new records

D.

Table A is not included in the System Clone > Exclude Tables list

Full Access
Question # 59

Which items are valid UI Action types in ServiceNow?

Choose 3 answers

A.

List Banner Button

B.

Form Button

C.

Form Choice

D.

Record Navigation Button

E.

List Choice

F.

Workflow Action

Full Access
Question # 60

Which of the following statements is NOT true for the Form Designer?

A.

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

B.

To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.

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 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.

Full Access
Question # 61

Which one of the following is true for the Application Picker?

A.

All custom application scope and the Global scope appear in the Application Picker

B.

All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker

C.

Only custom applications appear in the Application Picker

D.

Only downloaded applications appear in the Application Picker

Full Access
Question # 62

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()

Full Access
Question # 63

When creating an application through the Guided Application Creator, what are the options for creating a table? (Choose 3 answers)

A.

Link to external tables

B.

Create a table from scratch

C.

Create a table from a template

D.

Run import jobs

E.

Upload a spreadsheet

F.

Use API calls

G.

Extend a table

Full Access
Question # 64

Which database operations can be controlled with Application Access? (Choose 2 answers)

A.

Update

B.

Create

C.

Execute

D.

Query

Full Access
Question # 65

As administrator, what must you do to access features of High Security Settings?

A.

Add security_admin role to your user account

B.

Use System Administration > Elevate Roles module

C.

Select Elevate Roles

D.

Impersonate Security Admin

Full Access
Question # 66

When creating an application through the Guided Application Creator, what are the options for creating a table?

Choose 3 answers

A.

Extend a table

B.

Link to external tables

C.

Upload a spreadsheet

D.

Create a table from a template

E.

Use APIs

F.

Run import jobs

G.

Create a table from scratch

Full Access
Question # 67

Which of the following is NOT a caller access field option?

A.

Caller Tracking

B.

Caller Restriction

C.

None

D.

Caller Permission

Full Access
Question # 68

How would you describe the relationship between the Incident and Task table? I Incident table is extended from Task table

A.

Incident table has a one to many relationship with the Task table

B.

Incident table has a many to many relationship with the Task table

C.

Incident table is related to the Task table via the INC number

D.

Incident table is a database view of the Task table

Full Access
Question # 69

When debugging Email Notifications, what must you check on a user record?

Choose 2 answers

A.

The Email field must have a valid value.

B.

The user must not be locked out.

C.

The First name and Last name fields must have values.

D.

Active must be true.

E.

Delegation must be enabled.

Full Access
Question # 70

What is the Event Registry?

A.

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

B.

A Workflow which is launched every time an Event is generated; used to debug Events

C.

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

D.

The Event Log which lists all Events that have been generated

Full Access
Question # 71

Which tables are available by default in a ServiceNow instance?

Choose 3 answers

A.

Task

B.

Item

C.

User

D.

Incident

E.

Issue

F.

Project

Full Access
Question # 72

Which determines the relationships between field in an Import Set table to field in an existing ServiceNow table?

A.

Data Sources

B.

Schema Map Relationship Builder

C.

Business Service Management Map

D.

Transform Map

Full Access
Question # 73

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

Full Access
Question # 74

Which methods can be used to install an application on a ServiceNow instance?

Choose 3 answers

A.

Import an application from an XML file

B.

Use the 'Install' button on the application record

C.

Install from the Google Play Store

D.

Download from Stack Overflow

E.

Install an application from the Application Repository

F.

Download and install a third-party application from the ServiceNow Store

Full Access
Question # 75

What do you install when you want to add applications or functionality within your development instance?

A.

Patch

B.

Updated Pack

C.

App Package

D.

Plugin

E.

App Updated Set

Full Access
Question # 76

When crafting a scoped application that contains flow actions, what is the application called?

A.

Bundle

B.

Row

C.

Action

D.

Spoke

Full Access
Question # 77

What is the ServiceNow Application Repository?

A.

A database for logging application errors

B.

A database for tracking user permissions

C.

A database containing custom ServiceNow applications

D.

A database of ServiceNow provided applications

Full Access
Question # 78

Which items are valid UI Action types in ServiceNow? (Choose 3 answers)

A.

Workflow action

B.

Record navigation button

C.

Form choice

D.

Form button

E.

List banner button

Full Access
Question # 79

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

A.

previous

B.

GlideRecord

C.

event

D.

current

Full Access