CAD Exam Questions - Online Test


CAD Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

certleader.com

Proper study guides for Update ServiceNow Certified Application Developer-ServiceNow certified begins with ServiceNow CAD preparation products which designed to deliver the Download CAD questions by making you pass the CAD test at your first time. Try the free CAD demo right now.

Free demo questions for ServiceNow CAD Exam Dumps Below:

NEW QUESTION 1
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?

  • A. REST messages
  • B. Table
  • C. Script Include
  • D. Workflow

Answer: B

Explanation:
"By default, all application scope scripts can read the table's records but cannot perform any other database operations." https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/servicenow_administrator/app_store_learnv2_securingapps_tokyo_application_access_database_settings

NEW QUESTION 2
Which of the following is true about deleting fields from a table?

  • A. Any field on a table can be deleted
  • B. User-defined non-inherited fields can be detected
  • C. Inherited fields can be detected
  • D. Table records are deleted when a field is detected

Answer: B

Explanation:
User-defined non-inherited fields can be deleted from a table in ServiceNow. These are fields that are created by users on a specific table and are not inherited from a parent table. Inherited fields cannot be deleted from a table, as they are defined on a parent table and shared by all child tables. Any field on a table cannot be deleted, as some fields are system-defined and essential for the table functionality. Table records are not deleted when a field is deleted, as the field deletion only affects the table structure and not the data. Reference: Delete fields

NEW QUESTION 3
Which of the following is NOT a trigger type in Flow Designer?

  • A. Outbound Email
  • B. Application
  • C. Record
  • D. Schedule

Answer: A

Explanation:
See list of triggers on right hand side of this webpage: https://docs.servicenow.com/en- US/bundle/tokyo-application-development/page/administer/flow-designer/reference/flow- triggers.html
The trigger types in Flow Designer are Application, Record, Schedule, and

NEW QUESTION 4
Which one of the following is NOT part of the Form Designer?

  • A. Form layout
  • B. Page header
  • C. Schema map
  • D. Field navigator

Answer: C

Explanation:
https://developer.servicenow.com/dev.do#!/learn/courses/sandiego/app_store_learnv2_lear nmore_sandiego_learn_more/app_store_learnv2_learnmore_sandiego_form_and_list_layo uts/app_store_learnv2_learnmore_sandiego_what_is_form_designer
The Form Designer is a tool that allows you to create and customize forms on the ServiceNow platform. The Form Designer has four main components:
✑ Form layout: The form layout shows the preview of the form and allows you to drag
and drop fields, sections, and related lists onto the form. You can also resize, reorder, and delete the elements on the form layout.
✑ Page header: The page header shows the name of the table and the form that you
are editing. You can also access the form properties, save the form, and switch to the form view from the page header.
✑ Field navigator: The field navigator shows the list of available fields for the table
and allows you to search, filter, and add fields to the form. You can also create new fields and edit existing fields from the field navigator.
✑ Schema map: The schema map is not part of the Form Designer. The schema
map is a separate tool that shows the relationships between tables and fields on the platform. You can access the schema map from the System Definition > Tables module or from the context menu of a table.
References:
✑ [Form Designer]
✑ [Schema map]

NEW QUESTION 5
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.

  • A. Identify the table
  • B. Script the function(s)
  • C. Create a class
  • D. Create a prototype object from the new class

Answer: A

Explanation:
The step that does not belong when creating a Utils Script Include is identifying the table. A Script Include is a server-side script that can contain one or more classes or functions that can be reused by other scripts. It does not depend on a specific table, but can access any table through GlideRecord or other APIs. The other steps are part of creating a Script Include class and its prototype object. References: [ServiceNow Docs - Script Includes], [ServiceNow Docs - GlideRecord API]

NEW QUESTION 6
Which one of the following is NOT a debugging strategy for client-side scripts?

  • A. g_form.addInfoMessage()
  • B. Field Watcher
  • C. jslog()
  • D. gs.log()

Answer: D

Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning- plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scri pts
The following are debugging strategies for client-side scripts, which run in the web browser and manipulate the user interface:
✑ g_form.addInfoMessage(). This is a client-side API that displays an information
message at the top of the form.
✑ Field Watcher. This is a debugging tool that displays the current and previous values of one or more fields on a form.
✑ jslog(). This is a client-side API that writes a message to the browser console. The following is not a debugging strategy for client-side scripts, but for server-side scripts, which run on the ServiceNow platform and manipulate the database:
✑ gs.log(). This is a server-side API that writes a message to the system log. References: Client-Side Scripting APIs, Debugging Client Scripts

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
How can an application link to a repository behind a firewall?

  • A. This option is not supported.
  • B. Link an application to source control through a MID Server.
  • C. Link an application to source control through an access token.
  • D. Link an application to source control with multi-factor authentication.

Answer: B

Explanation:
"Use an existing MID Server to connect to a Source Control repository. Linking or importing an application through a MID Server enables access to repositories behind a firewall." https://docs.servicenow.com/bundle/tokyo-application- development/page/build/applications/concept/c_SourceControlIntegration.html

NEW QUESTION 9
When writing a Client Script to provide feedback targeted at a specific field, which method should be used?

  • A. g_form.showInfoMessage()
  • B. g_form.showFieldMsg()
  • C. g_form.addInfoMessage()
  • D. g_form.addFieldMsg()

Answer: B

Explanation:
https://docs.servicenow.com/bundle/tokyo-application- development/page/script/useful-scripts/reference/r_DisplayFieldMessages.html

NEW QUESTION 10
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 11
Which of the following objects does a Display Business Rule NOT have access to?

  • A. previous
  • B. GlideSystem
  • C. g_scratchpad
  • D. current

Answer: A

Explanation:
A Display Business Rule has access to the current, g_scratchpad, and GlideSystem objects, but not the previous object. The previous object is only available to Before Business Rules4. References: Business Rule API https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html

NEW QUESTION 12
What is the purpose of the Application Picker?

  • A. Select an application to run
  • B. Select an application as a favorite in the Application Navigator
  • C. Choose an application to edit and set the Application Scope
  • D. Choose an application to download and install

Answer: C

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

NEW QUESTION 13
Which of the following methods is NOT part of the ServiceNow REST API?

  • A. COPY
  • B. POST
  • C. GET
  • D. DELETE

Answer: A

Explanation:
The ServiceNow REST API is a web service that allows you to interact with the ServiceNow platform using HTTP requests and responses. The ServiceNow REST API supports the following methods:
✑ POST: This method allows you to create a new record or execute an action on the
ServiceNow platform. For example, you can use the POST method to create an incident or run a script.
✑ GET: This method allows you to retrieve information from the ServiceNow
platform. For example, you can use the GET method to get the details of a user or a table.
✑ DELETE: This method allows you to delete a record or a resource from the
ServiceNow platform. For example, you can use the DELETE method to delete an attachment or a workflow context.
✑ PUT: This method allows you to update a record or a resource on the ServiceNow
platform. For example, you can use the PUT method to update the state of a task or the value of a system property.
✑ PATCH: This method allows you to update a record or a resource on the
ServiceNow platform by sending only the changes. For example, you can use the PATCH method to update the short description of an incident or the order of a module.
The method COPY is not part of the ServiceNow REST API. There is no COPY method in the HTTP protocol. To copy a record or a resource on the ServiceNow platform, you need to use the POST method with the clone action.
References:
✑ ServiceNow REST API overview
✑ ServiceNow REST API methods
✑ [ServiceNow REST API actions]

NEW QUESTION 14
What is the ServiceNow store?

  • A. The source for ServiceNow Community created developer content
  • B. Marketplace for free and paid certified ServiceNow applications and integrations
  • C. Downloadable content ServiceNow script archive
  • D. Alternate name for the ServiceNow Developer Share site

Answer: B

Explanation:
The ServiceNow Store is a marketplace for free and paid certified ServiceNow applications and integrations. The ServiceNow Store provides customers with access to Now Certified enterprise workflow apps from partners that complement and extend ServiceNow products and solutions. Customers can browse, try, buy, and deploy apps and integrations that suit their needs and enhance their ServiceNow experience. The ServiceNow Store is not the source for ServiceNow Community created developer content, as that is available on the Developer Portal or the Share site. The ServiceNow Store is not a downloadable content ServiceNow script archive, as that is available on the Script Library or the Script Repository. The ServiceNow Store is not an alternate name for the ServiceNow Developer Share site, as that is a separate site where developers can share applications, code snippets, UI pages, etc. Reference: ServiceNow Store

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

  • A. Business Service Management Map
  • B. Data Sources
  • C. Transform Map
  • D. Cl Relationship Builder

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

NEW QUESTION 16
What are three ServiceNow table creation methods? (Choose three.)

  • A. Using legacy Workflows
  • B. Upload and turn a spreadsheet into a custom table
  • C. Using Flow Designer
  • D. Use the Now Experience Table Creator
  • E. Extend a table
  • F. Create a custom table

Answer: BEF

Explanation:
"If there are no spreadsheets or existing tables to use for your application, you can create and customize a new table." see this quote in link below: https://docs.servicenow.com/bundle/tokyo-application-development/page/build/app-engine- studio/task/create-table.html
Also see:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/guided-app- creator/task/gac-create-table-from-scratch.html
Also, no search results if search on "Now Experience Table Creator".

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

  • A. Create Branch
  • B. Apply Remote Changes
  • C. Stash Local Changes
  • D. Edit Repository Configurations

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]

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)