Free ServiceNow CAD Exam Actual Questions

The questions for CAD were last updated On Nov 4, 2024

Question No. 1

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

Show Answer Hide Answer
Correct Answer: D

A spoke is a scoped application that contains flow actions that can be used in Flow Designer. Spokes allow developers to create reusable actions that can be shared across applications and instances.


Spokes - Product Documentation: San Diego - ServiceNow

Create a spoke - Product Documentation: San Diego - ServiceNow

Flow Designer Spokes - ServiceNow Developers

Question No. 3

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

Show Answer Hide Answer
Correct Answer: B

From: https://docs.servicenow.com/bundle/paris-application-development/page/script/general-scripting/reference/r_ScriptingAlertInfoAndErrorMsgs.html

g_form.showFieldMsg('field_name', 'Hello World', 'error'); Puts 'Hello World' in an error message **below the specified field**. g_form.addInfoMessage() or g_form.addErrorMessage() place a blue box message at the top of the screen. Pg 126 of the CAD handbook

The method that prints a message on a blue background to the top of the current form by default is g_form.addInfoMessage(). The g_form object is a global object that provides access to form fields and UI elements on a form. The addInfoMessage() method is a method of the g_form object that displays an informational message next to the form header. The message has a blue background color by default, unless it is overridden by a CSS style. The addInfoMessage() method takes one argument, which is the message text to display. Reference: [ServiceNow Docs - GlideForm (g_form) API], [ServiceNow Docs - g_form.addInfoMessage()]


Question No. 4

What do you click when you have made modifications to your report, and you want to see the results without saving?

Show Answer Hide Answer
Correct Answer: C

Question No. 5

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.

Show Answer Hide Answer
Correct Answer: D

Extending an existing table such as the Task table when creating a new application has several benefits, such as:

You can repurpose existing fields by simply changing the label. For example, you can change the Short description field to Summary or Title for your new table.

You can use existing fields with no modifications. For example, you can use the Assigned to, Priority, and State fields for your new table without changing anything.

Existing logic from the parent table will be automatically applied to the new table. For example, you can inherit the Business Rules, Client Scripts, and UI Policies from the Task table for your new table.

The only option that is not true is d) All of the parent table records are copied to the new table. Extending a table does not copy any records from the parent table to the new table. It only creates a new table that inherits the fields and logic from the parent table.


[Extend a table]

[Task table]