ServiceNow CAD ServiceNow Certified Application Developer Online Training
ServiceNow CAD Online Training
The questions for CAD were last updated at Jul 30,2025.
- Exam Code: CAD
- Exam Name: ServiceNow Certified Application Developer
- Certification Provider: ServiceNow
- Latest update: Jul 30,2025
Which one of the following is NOT a method used for logging messages in a server-side script for a privately- scoped application?
- A . gs.log()
- B . gs.error()
- C . gs.warn()
- D . gs.debug()
If the Create module field is selected when creating a table, what is the new module’s default behavior?
- A . Open an empty form so new records can be created
- B . Open a link to a wiki article with instructions on how to customize the behavior of the new module
- C . Display an empty homepage for the application
- D . Display a list of all records from the table
How must Application Access be configured to prevent all other private application scopes from creating configuration records on an application’s data tables?
- A . 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
- B . Set the Accessible from field value to All application scopes and de-select the Can create option
- 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
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
When configuring an Access Control which has no condition or script, which one of the following statements is NOT true?
- A . table.*will grant access to every field in a record
- B . table.None will grant access to every record on the table
- C . table.field will grant access to a specific field in a record
- D . table.id will grant access to a specific record on the table
Which of the following methods are useful in Access Control scripts?
- A . g_user.hasRole() and current.isNewRecord()
- B . gs.hasRole() and current.isNewRecord()
- C . g_user.hasRole() and current.isNew()
- D . gs.hasRole() and current.isNew()
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
When a ServiceNow instance requests information from a web service, ServiceNow is the web service:
- A . Publisher
- B . Specialist
- C . Provider
- D . Consumer
Which one of the following is the fastest way to create and configure a Record Producer?
- A . Create a Catalog Category, open the category, and select the Add New Record Producer button
- B . Use the Record Producer module then add and configure all variables manually
- C . Open the table in the Table records and select the Add to Service Catalog Related Link
- D . Open the table’s form, right-click on the form header, and select the Create Record Producer menu item
Which objects can you use in a Scheduled Script Execution (Scheduled Job) script?
- A . GlideRecord and current
- B . GlideUser and GlideRecord
- C . GlideSystem and GlideRecord
- D . GlideSystem and current