CAD Dumps

CAD Free Practice Test

ServiceNow CAD: Certified Application Developer-ServiceNow

QUESTION 11

Which of the following is NOT a caller access field option?

Correct Answer: D
https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/task/set-RCA-level.html

QUESTION 12

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

Correct Answer: D
https://developer.servicenow.com/dev.do#!/learn/learning- plans/rome/new_to_servicenow/app_store_learnv2_scripting_rome_debugging_client_scri pts
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. References: Client-Side Scripting APIs, Debugging Client Scripts

QUESTION 13

Client-side scripts manage what?

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

QUESTION 14

Which one of the following is part of the client-side scripting API?

Correct Answer: B
https://developer.servicenow.com/dev.do#!/reference/api/rome/client The GlideUser object (g_user) is part of the client-side scripting API that provides information about the current user and the user’s preferences. It can be used in Client
Scripts and UI Policies to customize the user interface based on the user’s role, language, time zone, etc. The workflow.scratchpad object is only available in Workflow scripts, which are used to automate processes on the platform. The current and previous objects are only available in server-side scripts, such as Business Rules and Script Includes. The GlideSystem object (gs) is also a server-side object that provides methods for logging, debugging, date and time calculations, etc.
References:
✑ [GlideUser object (g_user)]
✑ [Workflow scripts]
✑ [Business Rules]
✑ Script Includes
✑ [GlideSystem object (gs)]

QUESTION 15

Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?

Correct Answer: B
"You must first select read access to grant any other API record operation." https://docs.servicenow.com/bundle/tokyo-application- development/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 if the Can read configuration 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. References: Application Access, Certified Application Developer (CAD) Learning Path