Our pass rate is high to 98.9% and the similarity percentage between our CAD study guide and real exam is 90% based on our seven-year educating experience. Do you want achievements in the ServiceNow CAD exam in just one try? I am currently studying for the ServiceNow CAD exam. Latest ServiceNow CAD Test exam practice questions and answers, Try ServiceNow CAD Brain Dumps First.

Free CAD Demo Online For ServiceNow Certifitcation:

NEW QUESTION 1
Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table:
CAD dumps exhibit
Which field or fields can a user with the itil role read?

  • A. field3 only
  • B. filed1 and field3
  • C. All fields
  • D. All fields except field3

Answer: D

Explanation:
https://docs.servicenow.com/bundle/tokyo-platform-security/page/administer/contextual-security/concept/access-control-rules.html

NEW QUESTION 2
Which method is used to retrieve Application Property values in a script?

  • A. gs.getProperty()
  • B. g_form.getAppProperty()
  • C. g_form.getProperty()
  • D. gs.getAppProperty()

Answer: A

Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/new_to_servicenow/app_store_learnv2_automatingapps_tokyo_use_applicatio n_properties

NEW QUESTION 3
Which of the following is NOT a way to install an application on a ServiceNow instance?

  • A. Install an application from the Application Repository
  • B. Select the Copy button on the application record
  • C. Download and install an application from the ServiceNow Share web site
  • D. Download and install a third-party application from the ServiceNow Store

Answer: B

Explanation:
There is no "copy" button on the application record (at least I couldn't see one). Also, see here: https://docs.servicenow.com/bundle/sandiego-application- development/page/build/applications/reference/r_ManagingApplications.html

NEW QUESTION 4
A graphical view of relationships among tables is a <blank>.

  • A. Schema map
  • B. Dependency view
  • C. Graphical User Interface
  • D. Map source report

Answer: A

Explanation:
"Schema map: Provides a graphical representation of the relationships between tables." https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/table-administration/concept/c_TableAdministration.html

NEW QUESTION 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.

  • A. a, b, c, and d
  • B. a and b
  • C. b and c
  • D. a, b, and c

Answer: D

Explanation:
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.
References:
✑ [Extend a table]
✑ [Task table]

NEW QUESTION 6
To see what scripts, reports, and other application artifacts will be in a published application:

  • A. Enter the name of the Application in the Global search field
  • B. Open the list of Update Sets for the instance
  • C. Examine the Application Files Related List in the application to be published
  • D. Open the artifact records individually to verify the value in the Application field

Answer: C

Explanation:
To see what scripts, reports, and other application artifacts will be in a published application, the best option is to examine the Application Files Related List in the application to be published. This will show all the application files that belong to the application, grouped by file type and scope. You can also filter, sort, or search the list to find specific files.
The following options are not the best ways to see what application artifacts will be in a published application:
✑ Enter the name of the Application in the Global search field. This will perform a
global text search on the instance and return any records that match the application name, which may include irrelevant or incomplete results.
✑ Open the list of Update Sets for the instance. This will show all the update sets
that have been created or imported on the instance, but not necessarily the ones that belong to the application to be published. Update sets are used to move customizations between instances, not to publish applications to the ServiceNow Store or Share.
✑ Open the artifact records individually to verify the value in the Application field.
This will require opening each record that may be part of the application and checking the Application field, which is tedious and error-prone. References: Publish an Application, Application Files

NEW QUESTION 7
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
  • B. Bar Chart
  • C. Bar Chart, Pie Chart, and Histogram
  • D. Bar Chart and Pie Chart

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]

NEW QUESTION 8
Tables that extend a table do what?

  • A. Sometimes inherit the parent's fields
  • B. Automatically update the application scope
  • C. Do not inherit the parent's fields
  • D. Inherit the parent's fields

Answer: D

Explanation:
Tables that extend a table inherit the parent’s fields. Extending a table means creating a child table that shares the same columns and business logic as the parent table. For example, the Incident table extends the Task table, which means that all fields defined on the Task table are also available on the Incident table. Extending a table allows for reusing existing fields and behaviors without duplicating them on multiple tables. Reference: Table extension and classes

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

  • A. Spoke
  • B. Bundle
  • C. Action
  • D. Flow

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.
Reference: https://community.servicenow.com/community? id=community_blog&sys_id=7b3af354db93ab80afc902d5ca9619bc

NEW QUESTION 10
Which one of the following is part of the client-side scripting API?

  • A. workflow.scratchpad
  • B. GlideUser object (g_user)
  • C. current and previous objects
  • D. GlideSystem object (gs)

Answer: B

Explanation:
https://developer.servicenow.com/dev.do#!/reference/api/rome/client The GlideUser object (g_user) is part of the client-side scripting API that provides information about the current user and the user’s preferences. It can be used in Client
Scripts and UI Policies to customize the user interface based on the user’s role, language, time zone, etc. The workflow.scratchpad object is only available in Workflow scripts, which are used to automate processes on the platform. The current and previous objects are only available in server-side scripts, such as Business Rules and Script Includes. The GlideSystem object (gs) is also a server-side object that provides methods for logging, debugging, date and time calculations, etc.
References:
✑ [GlideUser object (g_user)]
✑ [Workflow scripts]
✑ [Business Rules]
✑ Script Includes
✑ [GlideSystem object (gs)]

NEW QUESTION 11
When evaluating Access Controls, ServiceNow searches and evaluates:

  • A. Only for matches on the current table
  • B. Only for matches on the current field
  • C. From the most specific match to the most generic match
  • D. From the most generic match to the most specific match

Answer: C

Explanation:
When evaluating Access Controls, ServiceNow searches and evaluates:
✑ From the most specific match to the most generic match. This is the correct answer because ServiceNow follows a top-down approach when evaluating Access Control (ACL) rules, which are used to restrict the access to the data and functionality of the ServiceNow platform based on the user’s roles and conditions. ServiceNow starts with the most specific match, which is the field-level ACL rule, then moves to the table-level ACL rule, and finally to the global or * ACL rule. ServiceNow grants access if any of the ACL rules evaluates to true, and denies access if all of the ACL rules evaluate to false.
The following are not correct descriptions of how ServiceNow searches and evaluates Access Controls:
✑ Only for matches on the current table. This is not correct because ServiceNow does not only look for matches on the current table, but also on the parent tables and the global or * table. For example, if there is no ACL rule for the incident table, ServiceNow will look for an ACL rule for the task table, which is the parent table of the incident table, and then for the global or * table, which is the parent table of all tables.
✑ Only for matches on the current field. This is not correct because ServiceNow does not only look for matches on the current field, but also on the table that contains the field and the global or * table. For example, if there is no ACL rule for the short_description field on the incident table, ServiceNow will look for an ACL rule for the incident table, and then for the global or * table.
✑ From the most generic match to the most specific match. This is not correct because ServiceNow does not follow a bottom-up approach when evaluating Access Controls, but a top-down approach, as explained
above. References: Access Control Rules, ACL Evaluation Order
https://developer.servicenow.com/dev.do#!/learn/learning-plans/paris/new_to_servicenow/app_store_learnv2_securingapps_paris_access_controls_ evaluation_order

NEW QUESTION 12
Which one of the following is NOT a UI Action type?

  • A. List choice
  • B. Form button
  • C. List banner button
  • D. Form choice

Answer: D

Explanation:
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types:
✑ List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them.
✑ Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it.
✑ List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it.
The following is not a UI Action type:
✑ Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. References: UI Actions, Field Types
Reference: https://docs.servicenow.com/bundle/orlando-platform- administration/page/administer/list- administration/task/t_EditingAUIAction.html

NEW QUESTION 13
Which of the following is a good practice for adding instructions to a form?

  • A. Annotations
  • B. Related links to wiki pages
  • C. A context Menu UI Action
  • D. A population read-only field

Answer: A

Explanation:
"Add instructional text and other design elements to your forms by using form annotations in Form Builder." https://docs.servicenow.com/bundle/sandiego-application-development/page/administer/form-builder/task/create-form-annotations.html

NEW QUESTION 14
Application developers configure ServiceNow using industry standard JavaScript to…

  • A. Enable the right-click to edit the context menus on applications in the navigator
  • B. Extend and add functionality
  • C. Customize the organization’s company logo and banner text
  • D. Configure the outgoing email display name

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]

NEW QUESTION 15
Which one of the following client-side scripts apply to Record Producers?

  • A. Catalog Client Scripts and Catalog UI Policies
  • B. UI Scripts and UI Actions
  • C. UI Scripts and Record Producer Scripts
  • D. Client Scripts and UI Policies

Answer: A

Explanation:
Catalog Client Scripts and Catalog UI Policies are the client-side scripts that apply to Record Producers. Catalog Client Scripts allow you to add or modify functionality on a catalog item or record producer form. Catalog UI Policies dynamically change information on a catalog item or record producer form. UI Scripts, UI Actions, Client Scripts, and UI Policies do not apply to Record Producers. Reference: Catalog client scripts, Catalog UI policies
Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/client-scripts/ concept/c_CatalogClientScriptCreation.html

NEW QUESTION 16
Which one of the following is NOT true for Modules?

  • A. Access to Modules is controlled with roles
  • B. Modules open content pages
  • C. Every Module must be associated with a table
  • D. Every Module must be part of an Application Menu

Answer: C

Explanation:
The statement that is not true for Modules is that every Module must be associated with a table. A Module is the functionality within an Application Menu that opens a content page in the content frame or a separate tab or window. A Module can be associated with a table, a list, a form, a report, a script, or any other type of page. For example, the Open Module under the Incident Application Menu opens a list of incident records from the Incident table, while the Overview Module under the Performance Analytics Application Menu opens a dashboard page with various charts and widgets. The other statements are true for Modules. Access to Modules is controlled with roles, as each Module can have one or more roles specified in its definition that determine who can see and access it. Modules open content pages, as they are links to different types of pages that provide information and functionality to users. Every Module must be part of an Application Menu, as they are the second-level navigation options for Applications. Reference: Modules

NEW QUESTION 17
You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A's records to be installed as part of the application.
Table A's records will be installed when:

  • A. Table A is active and extends the Task table
  • B. Table A's records are added to the application record using the Create Application Files context menu item
  • C. Table A has an automatic number counter for new records
  • D. Table A is not included in the System Clone > Exclude Tables list

Answer: B

Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/t_IncludeApplicationData.html

NEW QUESTION 18
......

P.S. Easily pass CAD Exam with 135 Q&As Allfreedumps.com Dumps & pdf Version, Welcome to Download the Newest Allfreedumps.com CAD Dumps: https://www.allfreedumps.com/CAD-dumps.html (135 New Questions)