Servicenow CAD - ServiceNow Certified Application Developer - ServiceNow Training and Certification Certification Exam
Question #1 (Topic: demo questions)
Which Application Access configuration field(s) are NOT available if the Can read configuration field is
NOT selected?
Correct Answer: B
Explanation:
"You must first select read access to grant any other API record operation."
Reference: Application Access, Certified Application
"You must first select read access to grant any other API record operation."
https://docs.servicenow.com/bundle/tokyo-applicationdevelopment/
page/build/applications/reference/r_TableApplicationAccessFields.html
The Application Access configuration fields control the access level for an application and
its tables.
The following Application Access configuration fields are not available configuration if the Can read
field is not selected:
Can create. This field determines whether users can create records on the application tables.
Can update. This field determines whether users can update records on the application tables.
Can delete. This field determines whether users can delete records on the application tables.
These fields are not available because they depend on the Can read field, which determines whether
users can view records on the application tables. If users cannot read records, they cannot create,
update, or delete them either.
The following Application Access configuration fields are available regardless of the Can read
configuration field:
All access to this table via web services. This field determines whether users can access the
application tables using web services, such as REST or SOAP.
Allow configuration. This field determines whether users can configure the application tables, such
as adding or modifying fields, views, or indexes.
Reference: Application Access, Certified Application
Developer (CAD) Learning Path
Question #2 (Topic: demo questions)
Which one of the following is NOT a debugging strategy for client-side scripts?
Correct Answer: D
Explanation:
The following are debugging strategies for client-side scripts, which run in the web browser and
https://developer.servicenow.com/dev.do#!/learn/learningplans/
rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scripts
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.
Reference: Client-Side
Scripting APIs, Debugging Client Scripts
Question #3 (Topic: demo questions)
To see what scripts, reports, and other application artifacts will be in a published application:
Correct Answer: C
Explanation:
To see what scripts, reports, and other application artifacts will be in a published application, the
To see what scripts, reports, and other application artifacts will be in a published application, the
best option is to examine the Application Files Related List in the application to be published. This
will show all the application files that belong to the application, grouped by file type and scope. You
can also filter, sort, or search the list to find specific files.
The following options are not the best ways to see what application artifacts will be in a published
application:
Enter the name of the Application in the Global search field. This will perform a global text search on
the instance and return any records that match the application name, which may include irrelevant
or incomplete results.
Open the list of Update Sets for the instance. This will show all the update sets that have been
created or imported on the instance, but not necessarily the ones that belong to the application to
be published. Update sets are used to move customizations between instances, not to publish
applications to the ServiceNow Store or Share.
Open the artifact records individually to verify the value in the Application field. This will require
opening each record that may be part of the application and checking the Application field, which is
tedious and error-prone.
Reference: Publish an Application, Application Files
Question #4 (Topic: demo questions)
Which of the following statements is true for the Form Designer?
https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/formadministration/
concept/c_FormDesign.html
a) To add a field to the form layout, drag the field from the Fields tab to the desired destination on the
form.
b) To create a new field on a form’s table, drag the appropriate data type from the Field Types tab to
the form and then configure the new field.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and
select the Delete (X) button.
d) To add a section to the form layout, drag it from the Field Types tab to the desired destination on
the form.
Correct Answer: D
Explanation: