ExamGecko
Home / ServiceNow / CAD
Ask Question

CAD: ServiceNow Certified Application Developer

Vendor:
Exam Questions:
253
 Learners
  2.370
Last Updated
April - 2025
Language
English
7 Quizzes
PDF | VPLUS
This study guide should help you understand what to expect on the exam and includes a summary of the topics the exam might cover and links to additional resources. The information and materials in this document should help you focus your studies as you prepare for the exam.

Related questions

What is a Module?

The functionality within an application menu such as opening a page in the content frame or a separate tab or window
The functionality within an application menu such as opening a page in the content frame or a separate tab or window
A group of menus, or pages, providing related information and functionality to end-users
A group of menus, or pages, providing related information and functionality to end-users
A way of helping users quickly access information and services by filtering the items in the Application Navigator
A way of helping users quickly access information and services by filtering the items in the Application Navigator
A web-based way of providing software to end-users
A web-based way of providing software to end-users
Suggested answer: C
Explanation:


asked 23/09/2024
Rama Krishna
42 questions

Which one of the following is true?

A UI Policy's Actions execute before the UI Policy's Scripts
A UI Policy's Actions execute before the UI Policy's Scripts
The execution order for a UI Policy's Scripts and Actions is determined at runtime
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
A UI Policy's Scripts execute before the UI Policy's Actions
A UI Policy's Actions and Scripts execute at the same time
A UI Policy's Actions and Scripts execute at the same time
Suggested answer: A
Explanation:

Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory.

A UI Policy's Actions execute before the UI Policy's Scripts. Actions are predefined operations that can be applied to fields or sections, such as making them mandatory, read-only, visible, or setting a default value. Scripts are custom JavaScript code that can be used to perform more complex logic or validations. Actions are executed first, and then Scripts are executed if the UI Policy conditions are met. References: [ServiceNow Docs - UI policy actions], [ServiceNow Docs - UI policy scripts]

asked 23/09/2024
disserto management gmbh
46 questions

What data types of Flow Designer variables are supported to store record data and complex data?

Choose 3 answers

Become a Premium Member for full access
  Unlock Premium Member

When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?

base table
base table
child table
child table
parent table
parent table
all tables
all tables
Suggested answer: B
Explanation:

Configuring the label of a field in a child table changes the label only on that table, not on the base table or the parent table. The base table is the table that contains the common fields for all the extended tables, and the parent table is the table that is directly extended by the child table. The label of a field on the base table or the parent table can be different from the label on the child table. References: [ServiceNow Docs - Table extension], [ServiceNow Community - How to change field label in child table]

asked 23/09/2024
hesham azarkan
51 questions

Which one of the following is NOT true for Modules?

Become a Premium Member for full access
  Unlock Premium Member

When a selecting a data type for a field that will be displayed on a form, which of the following statements is NOT correct?

Become a Premium Member for full access
  Unlock Premium Member

Client-side scripts manage what?

Become a Premium Member for full access
  Unlock Premium Member

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

g_form.addInfoMsg()
g_form.addInfoMsg()
g_form.addInfoMessage()
g_form.addInfoMessage()
g_form.showFieldMessage()
g_form.showFieldMessage()
g_form.showFieldMsg()
g_form.showFieldMsg()
Suggested answer: B
Explanation:

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. References: [ServiceNow Docs - GlideForm (g_form) API], [ServiceNow Docs - g_form.addInfoMessage()]

asked 23/09/2024
Ragul Ponniah
45 questions

Which platform feature can be used to determine the relationships between field in an Import Set table to field in an existing ServiceNow table?

Business Service Management Map
Business Service Management Map
Data Sources
Data Sources
Transform Map
Transform Map
Cl Relationship Builder
Cl Relationship Builder
Suggested answer: C
Explanation:

A transform map determines the relationships between fields displaying in an Import Set table and fields in an existing ServiceNow table, such as the Incidents or Users table.

The following platform feature can be used to determine the relationships between fields in an Import Set table to fields in an existing ServiceNow table:

Transform Map. This is a feature that defines the mapping between the fields of an Import Set table and the fields of a target table, such as incident, problem, or user. A transform map also specifies the logic and rules for transforming the imported data, such as coalescing, scripting, or applying data policies.

The following platform features are not used to determine the relationships between fields in an Import Set table to fields in an existing ServiceNow table:

Business Service Management Map. This is a feature that provides a graphical representation of the configuration items (CIs) and their relationships in the Configuration Management Database (CMDB). A Business Service Management Map can be used to visualize the impact of incidents, changes, or problems on the CIs and the services they support.

Data Sources. This is a feature that defines the connection and authentication information for an external data source, such as a file, a JDBC database, or a web service. A data source is used to import data from the external source into an Import Set table.

CI Relationship Builder. This is a feature that creates relationships between CIs in the CMDB based on predefined or custom rules. A CI Relationship Builder can be used to populate the CMDB with the dependencies and connections between the CIs.References:Transform Maps, Business Service Management Map, Data Sources, CI Relationship Builder

asked 23/09/2024
Aldays Kausiona
48 questions

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

Become a Premium Member for full access
  Unlock Premium Member