[Aug-2024] Use Real CAD Dumps Free Sample Questions and Practice Test Engine [Q10-Q30]

Share

[Aug-2024] Use Real CAD Dumps Free Sample Questions and Practice Test Engine

Pass ServiceNow CAD exam - questions - convert Tets Engine to PDF


ServiceNow CAD certification is a significant achievement for individuals who want to develop their expertise in the ServiceNow ecosystem. Certified Application Developer-ServiceNow certification exam aims to validate the skills and knowledge of developers who work with ServiceNow applications. It provides an opportunity for developers to showcase their skills and expertise and earn recognition for their investment in learning ServiceNow development. By earning the ServiceNow CAD certification, individuals can open up their career progression opportunities and gain market recognition as a skilled professional.

 

NEW QUESTION # 10
When creating an application through the Guided Application Creator, which of the following is NOT an option for creating a table?

  • A. Create table from scratch
  • B. Create table from template
  • C. Extend a table
  • D. Upload spreadsheet

Answer: B

Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/guided-app-creator/concept/gac-tables.html


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

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

Answer: D


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

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

Answer: B

Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/client-scripts/ concept/c_CatalogClientScriptCreation.html


NEW QUESTION # 13
Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?

  • A. The application needs to run a clean up script on the last day of every month
  • B. The application needs to send weekly email reminders to requestors for all records on a table
  • C. The application needs to query the database every day to look for unassigned records
  • D. The application needs to run a client-side script at the same time every day

Answer: D

Explanation:
An example of when an application might not use a Scheduled Script Execution (Scheduled Job) is when the application needs to run a client-side script at the same time every day. A Scheduled Script Execution is a server-side script that runs on a specified schedule and performs some action on the server or database. A client-side script runs on the user's browser and cannot be scheduled by ServiceNow. The other options are examples of when an application might use a Scheduled Script Execution, such as sending email reminders, running a clean up script, or querying the database for unassigned records. Reference: Scheduled Script Execution, Client scripts


NEW QUESTION # 14
What is the REST API Explorer used to do?

  • A. Convert SOAP Message functions to REST methods
  • B. Create sample code for sending REST requests to ServiceNow
  • C. Find resources on the web for learning about REST
  • D. Practice using REST to interact with public data providers

Answer: B

Explanation:
One of the uses of the ServiceNow REST API Explorer is to create sample code for sending REST requests to ServiceNow. The REST API Explorer is a tool that allows you to discover and test the ServiceNow REST APIs. You can select an API endpoint, set the HTTP method, parameters, headers, and body, and then execute the request. The REST API Explorer will show you the response status, headers, and body, as well as generate sample code for various languages and frameworks, such as cURL, Java, JavaScript, Node.js, Python, Ruby, and more. References: [Use the REST API Explorer - Product Documentation: Tokyo - ServiceNow],
[Introduction to Scripted REST APIs - ServiceNow Developers]


NEW QUESTION # 15
Which one of the following is true for GlideUser (g_user) methods?

  • A. Can be used in Client Scripts and UI Policies only
  • B. Can be used in Client Scripts, UI Policies, and UI Actions
  • C. Can be used in Business Rules, and Scripts Includes
  • D. Can be used in Business Rules only

Answer: B


NEW QUESTION # 16
Which of the following is an available feature in Studio?
Choose 2 answers

  • A. Search branch
  • B. Merge branches
  • C. Push to update set
  • D. Push to external source control

Answer: A,B

Explanation:
Search branch and merge branches are available features in Studio. Search branch allows you to search for a specific branch name or ID in your Git repository. Merge branches allows you to merge changes from one branch to another, resolving any conflicts that may arise. Push to external source control and push to update set are not available features in Studio. Push to external source control is a feature of Source Control Integration, which is a separate application from Studio. Push to update set is a feature of Update Set Previewer, which is also a separate application from Studio. Reference: Studio, Source Control Integration, Update Set Previewer


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

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

Answer: B

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 # 18
Which of the following objects does a Display Business Rule NOT have access to?

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

Answer: B

Explanation:
Explanation/Reference: https://community.servicenow.com/community?
id=community_question&sys_id=8af90f29db5cdbc01dcaf3231f96197c


NEW QUESTION # 19
Which of the following objects does a Display Business Rule NOT have access to?

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

Answer: B

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. Reference: Business Rule API
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/business-rules/concept/c_BusinessRules.html


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

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

Answer: B

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 # 21
Which objects can be used in Inbound Action scripts?

  • A. current and event
  • B. current and previous
  • C. current and producer
  • D. current and email

Answer: A


NEW QUESTION # 22
Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?

  • A. GlideUser and GlideRecord
  • B. GlideRecord and current
  • C. GlideSystem and current
  • D. GlideSystem and GlideRecord

Answer: D

Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_administrator/app_store_learnv2_automatingapps_quebec_scheduled_script_execution_scripts The objects that you can use in a Scheduled Script Execution (Scheduled Job) script are GlideSystem and GlideRecord. GlideSystem provides methods for performing system operations, such as logging, running background scripts, or getting system information. GlideRecord provides methods for working with records in the database, such as querying, updating, inserting, or deleting records. The current object is not available in Scheduled Script Execution scripts, as it refers to the current record on a form or list. The GlideUser object is also not available, as it refers to the current user session. Reference: Scheduled Script Execution, GlideSystem, GlideRecord


NEW QUESTION # 23
Which business requirements and process(es) should be documented as part of the application development plan?
Choose 4 answers

  • A. Business problem
  • B. Available licenses
  • C. Users/stakeholders
  • D. Project schedule
  • E. Database capacity
  • F. Process steps
  • G. Data input/output

Answer: A,C,F,G

Explanation:
The application development plan is a document that outlines the scope, objectives, deliverables, and timeline of a software project1. It should include the following business requirements and processes:
Data input/output: This describes what data is needed for the application to function, how the data is collected, stored, processed, and displayed, and what outputs are generated by the application2.
Business problem: This defines the problem or opportunity that the application aims to address, the current situation, the desired outcome, and the benefits of the solution3.
Process steps: This details the steps involved in the application development lifecycle, such as planning, designing, testing, deploying, and maintaining the application4.
Users/stakeholders: This identifies the people who will use, benefit from, or influence the application, their roles, responsibilities, and expectations, and how they will be involved in the project5.
Reference = 1: Application Development Lifecycle: Phases, Steps and Process3 2: Tips for Writing Business Requirements Documents2 3: Business Requirements Document Template: 7 Components1 4: Requirements Development Steps4 5: What is Business Process Documentation?: 10 Easy Steps to5


NEW QUESTION # 24
Which one of the following is true for a Script Include with a Protection Policy value of Protected?

  • A. The Protection policy option can only be enabled by a user with the admin role
  • B. The Protection Policy is applied only if the glide.app.apply_protection system property value is true
  • C. Any user with the protected_edit role can see and edit the Script Include
  • D. The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store

Answer: D

Explanation:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ScriptProt The following is true for a Script Include with a Protection Policy value of Protected:
* The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store.
This is true because the Protection Policy is a feature that allows developers to protect their Script
* Includes from being viewed or modified by other users when they distribute their applications through the ServiceNow App Store. The Protection Policy is only enforced when the application is installed from the App Store, not when it is developed or tested on the instance.
The following are not true for a Script Include with a Protection Policy value of Protected:
* Any user with the protected_edit role can see and edit the Script Include. This is false because the protected_edit role is not related to the Protection Policy, but to the Access Control (ACL) rules. The protected_edit role allows users to edit protected fields on a table, such as the script field on the sys_script table, which stores the Business Rules. The Protection Policy does not use roles to control access to the Script Includes, but a cryptographic key that is generated when the application is published to the App Store.
* The Protection policy option can only be enabled by a user with the admin role. This is false because the Protection policy option can be enabled by any user who has the application_admin role for the scoped application that contains the Script Include. The application_admin role grants full access to the application development and administration within the scope of the application.
* The Protection Policy is applied only if the glide.app.apply_protection system property value is true.
This is false because the glide.app.apply_protection system property is not related to the Protection Policy, but to the Application Restricted Caller Access (ARCA) feature. The ARCA feature allows developers to restrict the access to the Script Includes from other applications based on the caller's scope. The glide.app.apply_protection system property determines whether the ARCA feature is enabled or disabled on the instance. References: Script Includes, Protect Script Includes, Application Restricted Caller Access


NEW QUESTION # 25
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 prototype object from the new class
  • D. Create a 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 # 26
When writing a Client Script to provide feedback targeted at a specific field, which method should be used?

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

Answer: A

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


NEW QUESTION # 27
Tables that extend a table do what?

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

Answer: A

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 # 28
Which one of the following is NOT a UI Action type?

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

Answer: C

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


NEW QUESTION # 29
Which one of the following is NOT a purpose of application scoping?

  • A. Provide a relationship between application artifacts
  • B. Provide a way of tracking the user who developed an application
  • C. Provide a namespace (prefix and scope name) to prevent cross application name collisions
  • D. Provide controls for how scripts from another scope can alter tables in a scoped application

Answer: B

Explanation:
The purpose of application scoping is NOT to provide a way of tracking the user who developed an application. Application scoping does not store or display information about the user who created or modified an application or its artifacts. The purpose of application scoping is to provide a relationship between application artifacts, provide a namespace to prevent cross-application name collisions, and provide controls for how scripts from another scope can alter tables in a scoped application. References: [Product Documentation | ServiceNow], [Advantages of Scoped Applications in ServiceNow]


NEW QUESTION # 30
......


Passing the CAD exam is a significant achievement for developers who work with the ServiceNow platform. Certified Application Developer-ServiceNow certification demonstrates that the developer has the skills and knowledge required to design and develop custom applications on the platform. It also validates that the developer has a deep understanding of the platform's capabilities and can use it to solve complex business problems.


The CAD certification program is divided into two levels: the CAD Foundation level and the CAD Professional level. The Foundation level is designed for IT professionals who are new to ServiceNow and provides an introduction to the platform and its capabilities. The Professional level is aimed at more experienced developers who are looking to build more complex applications and integrate them with other systems.

 

Pass Your CAD Exam Easily - Real CAD Practice Dump Updated Aug 09, 2024: https://www.actualtests4sure.com/CAD-test-questions.html

2024 Realistic Verified Free ServiceNow CAD Exam Questions: https://drive.google.com/open?id=1tHIWnDzrPG8VAkcP7L2S1Fm4qZWS2e5T