
CAD PDF Dumps Jul 28, 2023 Exam Questions – Valid CAD Dumps
Ultimate CAD Guide to Prepare Free Latest ServiceNow Practice Tests Dumps
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.
NEW QUESTION # 56
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
- A. Can create, Can update, and Can delete
- B. Can read does not affect the availability of other Application Access fields
- C. Allow configuration
- D. All access to this table via web services
Answer: D
NEW QUESTION # 57
In an Email Notification, which one of the following is NOT true for the Weight field?
- A. The Weight value defaults to zero
- B. Only Notifications with the highest weight for the same record and recipients are sent
- C. A Weight value of zero means that no email should be sent
- D. A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met
Answer: C
Explanation:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/new_to_servicenow/app_store_learnv2_automatingapps_quebec_when_to_send
NEW QUESTION # 58
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 All application scopes and de-select the Can create option
- B. 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
- C. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
- D. Set the Accessible from field value to This application scope only
Answer: B
Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/ concept/c_ExampleGrantingAccessToConfigRecs.html
NEW QUESTION # 59
The task table is an example of which of the following?
Choose 2 answers
- A. Child class
- B. Base class
- C. Parent class
- D. Legacy class
Answer: B,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 # 60
Which one of the following is true?
- A. A UI Policy's Scripts execute before the UI Policy's Actions
- B. A UI Policy's Actions and Scripts execute at the same time
- C. A UI Policy's Actions execute before the UI Policy's Scripts
- D. The execution order for a UI Policy's Scripts and Actions is determined at runtime
Answer: A
NEW QUESTION # 61
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, b, and c
- C. a and b
- D. b and c
Answer: D
NEW QUESTION # 62
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 All application scopes and de-select the Can create option
- B. Set the Accessible from field value to This application scope only
- C. Set the Accessible from field value to This application scope only and de-select the Allow access to this table via web services option
- D. 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
Answer: B
Explanation:
https://developer.servicenow.com/dev.do#!/learn/learning-plans/rome/new_to_servicenow/app_store_learnv2_securingapps_rome_application_access
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ExampleDenyingAllDesignAccess.html
NEW QUESTION # 63
Which of the following statements does NOT apply when extending an existing table?
- A. The parent table's Access Controls are evaluated when determining access to the new table's records and fields
- B. You must script and configure all required behaviors
- C. The new table inherits the functionality built into the parent table
- D. The new table inherits all of the fields from the parent table
Answer: C
NEW QUESTION # 64
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?
- A. g_form.hasRole('admin')
- B. g_form.hasRoleExactly('admin')
- C. gs.hasRole('admin')
- D. gs.hasRoleExactly('admin')
Answer: C
Explanation:
Business Rule is server-side, so it uses GlideSystem API. gs.hasRoleExactly doesn't exist
NEW QUESTION # 65
Which of the following is an available feature in Studio?
Choose 2 answers
- A. Push to update set
- B. Push to external source control
- C. Merge branches
- D. Search branch
Answer: C,D
NEW QUESTION # 66
Which one of the following is true for GlideUser (g_user) methods?
- A. Can be used in Business Rules, and Scripts Includes
- B. Can be used in Business Rules only
- C. Can be used in Client Scripts, UI Policies, and UI Actions
- D. Can be used in Client Scripts and UI Policies only
Answer: C
NEW QUESTION # 67
Which one of the following client-side scripts apply to Record Producers?
- A. Catalog Client Scripts and Catalog UI Policies
- B. Client Scripts and UI Policies
- C. UI Scripts and UI Actions
- D. UI Scripts and Record Producer Scripts
Answer: A
Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/client-scripts/ concept/c_CatalogClientScriptCreation.html
NEW QUESTION # 68
Which of the following methods prints a message on a blue background to the top of the current form by default?
- A. g_form.addInfoMsg()
- B. g_form.addInfoMessage()
- C. g_form.showFieldMessage()
- D. g_form.showFieldMsg()
Answer: D
Explanation:
Explanation/Reference: https://docs.servicenow.com/bundle/orlando-application-development/page/script/useful-scripts/ reference/r_DisplayFieldMessages.html
NEW QUESTION # 69
Which one of the following is NOT a purpose of application scoping?
- A. Provide a way of tracking the user who developed an application
- B. Provide controls for how scripts from another scope can alter tables in a scoped application
- C. Provide a namespace (prefix and scope name) to prevent cross application name collisions
- D. Provide a relationship between application artifacts
Answer: A
NEW QUESTION # 70
Which Report Type(s) can be created by right-clicking on a column header in a table's list?
- A. Bar Chart and Pie Chart
- B. Bar Chart
- C. Bar Chart, Pie Chart, and Histogram
- D. Bar Chart, Pie Chart, Histogram, and Line
Answer: B
NEW QUESTION # 71
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
- A. ${event.<property name>}
- B. ${current.<property name>}
- C. ${property name>.getDisplayValue()}
- D. ${gs.<property name>}
Answer: C
NEW QUESTION # 72
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?
- A. all tables
- B. child table
- C. base table
- D. parent table
Answer: B
NEW QUESTION # 73
......
Passing Key To Getting CAD Certified Exam Engine PDF: https://www.testsdumps.com/CAD_real-exam-dumps.html
Get Top-Rated ServiceNow CAD Exam Dumps Now: https://drive.google.com/open?id=1MmA7HvLGjsXAadToJtpBoCJt-E-AyGoH
