ExamGecko
Home / ServiceNow / CAD / List of questions
Ask Question

ServiceNow CAD Practice Test - Questions Answers, Page 5

List of questions

Question 41

Report
Export
Collapse

Application developers configure ServiceNow using industry standard JavaScript to...

Enable the right-click to edit the context menus on applications in the navigator
Enable the right-click to edit the context menus on applications in the navigator
Extend and add functionality
Extend and add functionality
Customize the organization's company logo and banner text
Customize the organization's company logo and banner text
Configure the outgoing email display name
Configure the outgoing email display name
Suggested answer: B

Explanation:

Application developers configure ServiceNow using industry standard JavaScript to extend and add functionality. JavaScript is a scripting language that enables developers to create dynamic and interactive web pages, as well as manipulate data and logic on the server-side. ServiceNow provides various APIs and frameworks for developers to use JavaScript to customize and enhance the functionality of their applications, such as client scripts, UI policies, business rules, script includes, UI actions, and more. References: [ServiceNow Docs - JavaScript in ServiceNow], [ServiceNow Docs - Scripting in ServiceNow]

asked 23/09/2024
Nicola Grossi
38 questions

Question 42

Report
Export
Collapse

How many applications menus can an application have?

3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
As many as the application design requires
As many as the application design requires
2, one for an application's user modules and one for an application's administrator modules
2, one for an application's user modules and one for an application's administrator modules
1, which is used for all application modules
1, which is used for all application modules
Suggested answer: B

Explanation:

An application can have as many application menus as the application design requires. An application menu is a container for application modules, which are links to features or functionalities within an application. Application menus are displayed in the application navigator, which is the left sidebar of the ServiceNow interface. Developers can create and configure application menus using Studio or the Application Menus module. Application menus can have different roles and visibility settings, depending on the intended audience and purpose of the application. References: [ServiceNow Docs - Application menus], [ServiceNow Docs - Create an application menu]

asked 23/09/2024
Susanne Hughes
35 questions

Question 43

Report
Export
Collapse

The source control operation used to store local changes on an instance for later application is called a(n)

Branch
Branch
Tag
Tag
Stash
Stash
Update set
Update set
Suggested answer: A

Explanation:


asked 23/09/2024
Renats Fasulins
37 questions

Question 44

Report
Export
Collapse

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

producer.field_name
producer.field_name
producer.variablename
producer.variablename
current.variable_name
current.variable_name
current.field_name
current.field_name
Suggested answer: B

Explanation:

The syntax used in a Record Producer script to access values from Record Producer form fields is producer.variable_name. A Record Producer is a type of catalog item that allows users to create records on any table from the service catalog. A Record Producer script is a server-side script that runs when a Record Producer is submitted, and can be used to set values or perform actions on the generated record. The producer object is a global object that represents the Record Producer form and its variables. The variable_name is the name of the variable defined in the Record Producer. References: [ServiceNow Docs - Record producers], [ServiceNow Docs - Record producer script]

asked 23/09/2024
Jonathan Hernández Hernández
31 questions

Question 45

Report
Export
Collapse

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
41 questions

Question 46

Report
Export
Collapse

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

Spoke
Spoke
Bundle
Bundle
Action
Action
Flow
Flow
Suggested answer: A

Explanation:

https://docs.servicenow.com/bundle/paris-servicenow-platform/page/administer/flow-designer/concept/spokes.html

A spoke is a scoped application containing Flow Designer content dedicated to a particular application or record type. Flow Designer provides a set of core actions to automate Now Platform processes. You can add application-specific core actions by activating the associated spoke.

asked 23/09/2024
Puth Sovann
42 questions

Question 47

Report
Export
Collapse

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
38 questions

Question 48

Report
Export
Collapse

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

Create Branch
Create Branch
Apply Remote Changes
Apply Remote Changes
Stash Local Changes
Stash Local Changes
Edit Repository Configurations
Edit Repository Configurations
Suggested answer: A

Explanation:

The Create Branch operation is available from both Studio and the Git Repository. This operation allows you to create a new branch from an existing branch in your Git repository. You can use branches to work on different features or versions of your application without affecting the main branch.

Reference: [Create a branch]

asked 23/09/2024
Channa Leang
39 questions

Question 49

Report
Export
Collapse

Which one of the following is NOT required to link a ServiceNow application to a Git repository?

Password
Password
URL
URL
User name
User name
Application name
Application name
Suggested answer: D

Explanation:

The application name is not required to link a ServiceNow application to a Git repository. You only need to provide the URL, user name, and password of the Git repository, as well as the branch name and the authentication type. The application name is automatically generated based on the scope name of your application.

Reference: [Link an application to a Git repository]

asked 23/09/2024
Jonathan Moreno
29 questions

Question 50

Report
Export
Collapse

Which Report Type(s) can be created by right-clicking on a column header in a table's list?

Bar Chart, Pie Chart, Histogram, and Line
Bar Chart, Pie Chart, Histogram, and Line
Bar Chart
Bar Chart
Bar Chart, Pie Chart, and Histogram
Bar Chart, Pie Chart, and Histogram
Bar Chart and Pie Chart
Bar Chart and Pie Chart
Suggested answer: D

Explanation:

The Bar Chart and Pie Chart report types can be created by right-clicking on a column header in a table's list. These report types show how individual pieces of data relate to the whole using proportional bars or slices. You can also choose different aggregation methods such as count, sum, average, min, max, or percent.

Reference: [Create reports from lists]

asked 23/09/2024
Neha Dua
41 questions
Total 223 questions
Go to page: of 23