Free CAD Exam Braindumps (page: 13)

Page 12 of 70

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

  1. g_form.addInfoMsg()
  2. g_form.addInfoMessage()
  3. g_form.showFieldMessage()
  4. g_form.showFieldMsg()

Answer(s): 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.


Reference:

[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):

  1. Spoke
  2. Bundle
  3. Action
  4. Flow

Answer(s): 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.


Reference:

https://community.servicenow.com/community?
id=community_blog&sys_id=7b3af354db93ab80afc902d5ca9619bc



What is a Module?

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

Answer(s): C

Explanation:

https://docs.servicenow.com/bundle/rome-platform-user-interface/page/administer/navigation- and-ui/task/t_CreateAModule.html

A module is the functionality within an application menu such as opening a page in the content frame or a separate tab or window. For example, Open is a module under the Problem application menu that opens a list of problem records. Modules are the second level navigation options for applications.


Reference:

Modules | ServiceNow Tutorials



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

  1. Create Branch
  2. Apply Remote Changes
  3. Stash Local Changes
  4. Edit Repository Configurations

Answer(s): 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]






Post your Comments and Discuss ServiceNow® CAD exam with other Community members:

CAD Discussions & Posts