ExamGecko
Home Home / ServiceNow / CAD

ServiceNow CAD Practice Test - Questions Answers

Question list
Search
Search

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
A.
a, b, c, and d
Answers
B.
b, c, and d
B.
b, c, and d
Answers
C.
a, b, and d
C.
a, b, and d
Answers
D.
a, b, and c
D.
a, b, and c
Answers
Suggested answer: D

Explanation:

https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/form-administration/concept/c_FormDesign.html

The Form Designer is a graphical interface for creating and customizing forms. The following statements are true for the Form Designer:

To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form. This will add the field to the form view without changing the table definition.

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. This will create a new column on the table and add the field to the form view.

To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button. This will remove the field from the form view but not from the table definition.

The following statement is false for the Form Designer:

To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form. This is incorrect because sections are not available in the Field Types tab. To add a section, click the Add Section button on the toolbar or right-click on the form and select Add Section.References:Introduction to App Engine Studio for Developers,ServiceNow Studio Overview, Form Designer

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
A.
a, b and c
Answers
B.
a, b, and d
B.
a, b, and d
Answers
C.
b, c and d
C.
b, c and d
Answers
D.
a, c and d
D.
a, c and d
Answers
Suggested answer: A

Explanation:

https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html

An Email Notification is a record that defines the content and conditions for sending an email message from the ServiceNow platform. The following are configured in an Email Notification:

Who will receive the notification. This is specified by the Recipients related list, which can include users, groups, email addresses, or scripts that return email addresses.

What content will be in the notification. This is specified by the Subject and Message HTML fields, which can include variables, scripts, or templates to dynamically generate the email content.

When to send the notification. This is specified by the When to send tab, which defines the conditions and events that trigger the email notification.

The following is not configured in an Email Notification:

How to send the notification. This is not a configuration option for an Email Notification. The platform uses the SMTP protocol to send email messages, and the email properties control the email server settings and behavior.References:Email Notifications,Get Started with Notifications

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
A.
Enter the name of the Application in the Global search field
Answers
B.
Open the list of Update Sets for the instance
B.
Open the list of Update Sets for the instance
Answers
C.
Examine the Application Files Related List in the application to be published
C.
Examine the Application Files Related List in the application to be published
Answers
D.
Open the artifact records individually to verify the value in the Application field
D.
Open the artifact records individually to verify the value in the Application field
Answers
Suggested answer: C

Explanation:

To see what scripts, reports, and other application artifacts will be in a published application, the best option is to examine the Application Files Related List in the application to be published. This will show all the application files that belong to the application, grouped by file type and scope. You can also filter, sort, or search the list to find specific files.

The following options are not the best ways to see what application artifacts will be in a published application:

Enter the name of the Application in the Global search field. This will perform a global text search on the instance and return any records that match the application name, which may include irrelevant or incomplete results.

Open the list of Update Sets for the instance. This will show all the update sets that have been created or imported on the instance, but not necessarily the ones that belong to the application to be published. Update sets are used to move customizations between instances, not to publish applications to the ServiceNow Store or Share.

Open the artifact records individually to verify the value in the Application field. This will require opening each record that may be part of the application and checking the Application field, which is tedious and error-prone.References:Publish an Application, Application Files

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

A.
g_form.addInfoMessage()
A.
g_form.addInfoMessage()
Answers
B.
Field Watcher
B.
Field Watcher
Answers
C.
jslog()
C.
jslog()
Answers
D.
gs.log()
D.
gs.log()
Answers
Suggested answer: D

Explanation:

https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scripts

The following are debugging strategies for client-side scripts, which run in the web browser and manipulate the user interface:

g_form.addInfoMessage(). This is a client-side API that displays an information message at the top of the form.

Field Watcher. This is a debugging tool that displays the current and previous values of one or more fields on a form.

jslog(). This is a client-side API that writes a message to the browser console.

The following is not a debugging strategy for client-side scripts, but for server-side scripts, which run on the ServiceNow platform and manipulate the database:

gs.log(). This is a server-side API that writes a message to the system log.References:Client-Side Scripting APIs, Debugging Client Scripts

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
A.
All access to this table via web services
Answers
B.
Can create, Can update, and Can delete
B.
Can create, Can update, and Can delete
Answers
C.
Can read does not affect the availability of other Application Access fields
C.
Can read does not affect the availability of other Application Access fields
Answers
D.
Allow configuration
D.
Allow configuration
Answers
Suggested answer: B

Explanation:

'You must first select read access to grant any other API record operation.' https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/reference/r_TableApplicationAccessFields.html

The Application Access configuration fields control the access level for an application and its tables. The following Application Access configuration fields are not available if the Can read configuration field is not selected:

Can create. This field determines whether users can create records on the application tables.

Can update. This field determines whether users can update records on the application tables.

Can delete. This field determines whether users can delete records on the application tables.

These fields are not available because they depend on the Can read field, which determines whether users can view records on the application tables. If users cannot read records, they cannot create, update, or delete them either.

The following Application Access configuration fields are available regardless of the Can read configuration field:

All access to this table via web services. This field determines whether users can access the application tables using web services, such as REST or SOAP.

Allow configuration. This field determines whether users can configure the application tables, such as adding or modifying fields, views, or indexes.References:Application Access,Certified Application Developer (CAD) Learning Path

Which of the following is NOT a trigger type in Flow Designer?

A.
Outbound Email
A.
Outbound Email
Answers
B.
Application
B.
Application
Answers
C.
Record
C.
Record
Answers
D.
Schedule
D.
Schedule
Answers
Suggested answer: A

Explanation:

See list of triggers on right hand side of this webpage: https://docs.servicenow.com/en-US/bundle/tokyo-application-development/page/administer/flow-designer/reference/flow-triggers.html

The trigger types in Flow Designer are Application, Record, Schedule, and Topic.Outbound Email is not a trigger type, but an action type that can be used in a flow to send an email message1. References:Flow Designer Trigger Types

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
A.
REST messages
Answers
B.
Table
B.
Table
Answers
C.
Script Include
C.
Script Include
Answers
D.
Workflow
D.
Workflow
Answers
Suggested answer: B

Explanation:

'By default, all application scope scripts can read the table's records but cannot perform any other database operations.' https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/servicenow_administrator/app_store_learnv2_securingapps_tokyo_application_access_database_settings

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
A.
Only Notifications with the highest weight for the same record and recipients are sent
Answers
B.
A Weight value of zero means that no email should be sent
B.
A Weight value of zero means that no email should be sent
Answers
C.
The Weight value defaults to zero
C.
The Weight value defaults to zero
Answers
D.
A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met
D.
A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met
Answers
Suggested answer: B

Explanation:

https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html

https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/new_to_servicenow/app_store_learnv2_automatingapps_quebec_when_to_send

The Weight field in an Email Notification determines which notification is sent when multiple notifications are triggered for the same record and recipients. Only the notification with the highest weight is sent. A weight value of zero means the notification is always sent when the notification's When to send criteria is met.A weight value of -1 means that no email should be sent3. References:Email Notification Weight

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

A.
previous
A.
previous
Answers
B.
GlideSystem
B.
GlideSystem
Answers
C.
g_scratchpad
C.
g_scratchpad
Answers
D.
current
D.
current
Answers
Suggested answer: A

Explanation:

A Display Business Rule has access to the current, g_scratchpad, and GlideSystem objects, but not the previous object.The previous object is only available to Before Business Rules4. References:Business Rule API

https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html

Which of the following features are available to Global applications? (Choose two.)

A.
Automated Test Framework
A.
Automated Test Framework
Answers
B.
Source Control
B.
Source Control
Answers
C.
Delegated Development
C.
Delegated Development
Answers
D.
Flow Designer
D.
Flow Designer
Answers
Suggested answer: A, D

Explanation:

Global applications can use Automated Test Framework and Flow Designer features, but not Source Control and Delegated Development features. Source Control and Delegated Development features are only available to scoped applications . References: [Global vs Scoped Applications], [Delegated Development]

Total 199 questions
Go to page: of 20