ExamGecko
Home Home / ServiceNow / CAD

ServiceNow CAD Practice Test - Questions Answers, Page 5

Question list
Search
Search

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

A.
Enable the right-click to edit the context menus on applications in the navigator
A.
Enable the right-click to edit the context menus on applications in the navigator
Answers
B.
Extend and add functionality
B.
Extend and add functionality
Answers
C.
Customize the organization's company logo and banner text
C.
Customize the organization's company logo and banner text
Answers
D.
Configure the outgoing email display name
D.
Configure the outgoing email display name
Answers
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]

How many applications menus can an application have?

A.
3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
A.
3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
Answers
B.
As many as the application design requires
B.
As many as the application design requires
Answers
C.
2, one for an application's user modules and one for an application's administrator modules
C.
2, one for an application's user modules and one for an application's administrator modules
Answers
D.
1, which is used for all application modules
D.
1, which is used for all application modules
Answers
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]

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

A.
Branch
A.
Branch
Answers
B.
Tag
B.
Tag
Answers
C.
Stash
C.
Stash
Answers
D.
Update set
D.
Update set
Answers
Suggested answer: A

Explanation:


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

A.
producer.field_name
A.
producer.field_name
Answers
B.
producer.variablename
B.
producer.variablename
Answers
C.
current.variable_name
C.
current.variable_name
Answers
D.
current.field_name
D.
current.field_name
Answers
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]

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

A.
g_form.addInfoMsg()
A.
g_form.addInfoMsg()
Answers
B.
g_form.addInfoMessage()
B.
g_form.addInfoMessage()
Answers
C.
g_form.showFieldMessage()
C.
g_form.showFieldMessage()
Answers
D.
g_form.showFieldMsg()
D.
g_form.showFieldMsg()
Answers
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()]

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

A.
Spoke
A.
Spoke
Answers
B.
Bundle
B.
Bundle
Answers
C.
Action
C.
Action
Answers
D.
Flow
D.
Flow
Answers
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.

What is a Module?

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

Explanation:


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

A.
Create Branch
A.
Create Branch
Answers
B.
Apply Remote Changes
B.
Apply Remote Changes
Answers
C.
Stash Local Changes
C.
Stash Local Changes
Answers
D.
Edit Repository Configurations
D.
Edit Repository Configurations
Answers
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]

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

A.
Password
A.
Password
Answers
B.
URL
B.
URL
Answers
C.
User name
C.
User name
Answers
D.
Application name
D.
Application name
Answers
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]

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
A.
Bar Chart, Pie Chart, Histogram, and Line
Answers
B.
Bar Chart
B.
Bar Chart
Answers
C.
Bar Chart, Pie Chart, and Histogram
C.
Bar Chart, Pie Chart, and Histogram
Answers
D.
Bar Chart and Pie Chart
D.
Bar Chart and Pie Chart
Answers
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]

Total 199 questions
Go to page: of 20