[Aug-2023] ServiceNow CAD Dumps – Reduce Your Chance of Failure in CAD Exam [Q32-Q57]

Share

[Aug-2023] ServiceNow CAD Dumps – Reduce Your Chance of Failure in CAD Exam

To help you achieve your ultimate goal, we suggest the actual ServiceNow CAD dumps for your Certified Application Developer-ServiceNow exam preparation to use as your guideline.

NEW QUESTION # 32
Which one of the following is true regarding Application Scope?

  • A. Developers can choose the prefix for a scope's namespace
  • B. Any developer can edit any application
  • C. All applications are automatically part of the Global scope
  • D. Applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts

Answer: D

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


NEW QUESTION # 33
Which of the following CANNOT be debugged using the Field Watcher?

  • A. Business Rules
  • B. Access Controls
  • C. Script Includes
  • D. Client Scripts

Answer: C


NEW QUESTION # 34
The task table is an example of which of the following?
Choose 2 answers

  • A. Parent class
  • B. Legacy class
  • C. Base class
  • D. Child class

Answer: A,C

Explanation:
"A table that extends another table is called a child class, and the table it extends is the parent class" - this is about halfway down in this link below: https://docs.servicenow.com/en-US/bundle/tokyo-platform-administration/page/administer/table-administration/concept/table-extension-and-classes.html


NEW QUESTION # 35
Modules must have a Link type. Which one of the following is a list of Link types?

  • A. Assessment, List of Records, Separator, Timeline Page
  • B. List of Records, Content Page, Order, URL (from arguments:)
  • C. List of Records, Separator, Catalog Type, Roles
  • D. Assessment, List of Records, Content Page, Roles

Answer: A


NEW QUESTION # 36
How can an application link to a repository behind a firewall?

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

Answer: C

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 # 37
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.addFieldMsg()
  • C. g_form.showFieldMsg()
  • D. g_form.addInfoMessage()

Answer: C

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


NEW QUESTION # 38
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 application is downloaded from the ServiceNow App Store
  • C. Any user with the protected_edit role can see and edit the Script Include
  • D. The Protection Policy is applied only if the glide.app.apply_protection system property value is true

Answer: A


NEW QUESTION # 39
Which one of the following is the fastest way to create and configure a Record Producer?

  • A. Open the table's form, right-click on the form header, and select the Create Record Producer menu item
  • B. Open the table in the Table records and select the Add to Service Catalog Related Link
  • C. Create a Catalog Category, open the category, and select the Add New Record Producer button
  • D. Use the Record Producer module then add and configure all variables manually

Answer: C

Explanation:
Explanation/Reference:


NEW QUESTION # 40
How many applications menus can an application have?

  • A. 1, which is used for all application modules
  • B. As many as the application design requires
  • C. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
  • D. 2, one for an application's user modules and one for an application's administrator modules

Answer: B

Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-platform-user-interface/page/administer/navigation- and-ui/task/t_CreateAnApplicationMenu.html


NEW QUESTION # 41
Which Report Type(s) can be created by right-clicking on a column header in a table's list?

  • A. Bar Chart
  • B. Bar Chart, Pie Chart, Histogram, and Line
  • C. Bar Chart, Pie Chart, and Histogram
  • D. Bar Chart and Pie Chart

Answer: A


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

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

Answer: D

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


NEW QUESTION # 43
What is a Module?

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

Answer: B


NEW QUESTION # 44
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application's data tables?

  • A. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
  • B. Set the Accessible from field value to All application scopes and de-select the Can create option
  • C. You must create Access Controls to prevent all other application scopes from creating configuration records on an application's data tables rather than using Application Access
  • D. Set the Accessible from field value to This application scope only

Answer: C

Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/ concept/c_ExampleGrantingAccessToConfigRecs.html


NEW QUESTION # 45
Client-side scripts manage what?

  • A. Database and backend
  • B. Forms and Forms Fields
  • C. Playbook access
  • D. User access

Answer: A

Explanation:
https://docs.servicenow.com/bundle/tokyo-application-development/page/script/server-scripting/concept/c_ServerScripting.html


NEW QUESTION # 46
How many applications menus can an application have?

  • A. 1, which is used for all application modules
  • B. As many as the application design requires
  • C. 3, one for an application's user modules, one for an application's administrator modules, and one for the ServiceNow administrator's modules
  • D. 2, one for an application's user modules and one for an application's administrator modules

Answer: B


NEW QUESTION # 47
Here is the Business Rule script template:

This type of JavaScript function is known as:

  • A. Scoped
  • B. Constructor
  • C. Anonymous
  • D. Self-invoking

Answer: D

Explanation:
Self-invoking. Learn JavaScript!


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

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

Answer: C


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

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

Answer: C,D


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

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

Answer: D

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 # 51
Which one of the following is true for a table with the "Allow configuration" Application Access option selected?

  • A. Only the in scope application's scripts can create Business Rules for the table
  • B. Out of scope applications can create Business Rules for the table
  • C. Any user with the application's user role can modify the application's scripts
  • D. Out of scope applications can add new tables to the scoped application

Answer: B

Explanation:
Explanation/Reference: https://community.servicenow.com/community?
id=community_question&sys_id=1a721819dbfa23409a64e15b8a9619d2


NEW QUESTION # 52
Which of the following methods are useful in Access Control scripts?

  • A. gs.hasRole() and current.isNewRecord()
  • B. g_user.hasRole() and current.isNewRecord()
  • C. gs.hasRole() and current.isNew()
  • D. g_user.hasRole() and current.isNew()

Answer: A

Explanation:
Explanation/Reference: http://servicenowmypath.blogspot.com/2017/


NEW QUESTION # 53
Which one of the following is true for the Application Picker?

  • A. Only downloaded applications appear in the Application Picker
  • B. Only custom applications appear in the Application Picker
  • C. All custom application scope and the Global scope appear in the Application Picker
  • D. All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker

Answer: C

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


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

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

Answer: A

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


NEW QUESTION # 55
Which of the following is NOT supported by Flow Designer?

  • A. Use Delegated Developer
  • B. Call a subflow from a flow
  • C. Test a flow with rollback
  • D. Run a flow from a MetricBase Trigger

Answer: C


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

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

Answer: A

Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scripts


NEW QUESTION # 57
......

Accurate & Verified Answers As Seen in the Real Exam here: https://gocertify.topexamcollection.com/CAD-vce-collection.html