ExamGecko
Home Home / ServiceNow / CAD

ServiceNow CAD Practice Test - Questions Answers, Page 10

Question list
Search
Search

What records are used to track cross-scope applications or scripts that request access to an application, application resource, or event?

A.
Restricted caller access records
A.
Restricted caller access records
Answers
B.
Caller tracking records
B.
Caller tracking records
Answers
C.
Access control level records
C.
Access control level records
Answers
D.
Cross-scope access records
D.
Cross-scope access records
Answers
Suggested answer: A

Explanation:

'Restricted caller access [sys_restricted_caller_access] records track cross-scope applications or scripts that request access to an application, application resource, or event in the Now Platform.' <<== this is the third sentence down in the following link: https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/restricted-caller-access-privilege.html

How does ServiceNow match inbound email to existing records?

A.
Watermark
A.
Watermark
Answers
B.
Record link
B.
Record link
Answers
C.
Subject line
C.
Subject line
Answers
D.
sys_id
D.
sys_id
Answers
Suggested answer: A

Explanation:

https://developer.servicenow.com/dev.do#!/learn/courses/tokyo/app_store_learnv2_flowdesigner_tokyo_flow_designer/app_store_learnv2_flowdesigner_tokyo_notifications_in_flow_designer/app_store_learnv2_flowdesigner_tokyo_inbound_email_and_flows

'By default, the system generates a watermark label at the bottom of each notification email to allow matching incoming email to existing records.' https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/concept/c_WorkingWithWatermarks.html

How can an application link to a repository behind a firewall?

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

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

You are developing the MyApp application that has a table, Table A. When the MyApp application is installed on an instance, you want Table A's records to be installed as part of the application. Table A's records will be installed when:

A.
Table A is active and extends the Task table
A.
Table A is active and extends the Task table
Answers
B.
Table A's records are added to the application record using the Create Application Files context menu item
B.
Table A's records are added to the application record using the Create Application Files context menu item
Answers
C.
Table A has an automatic number counter for new records
C.
Table A has an automatic number counter for new records
Answers
D.
Table A is not included in the System Clone > Exclude Tables list
D.
Table A is not included in the System Clone > Exclude Tables list
Answers
Suggested answer: B

Explanation:

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

Which one of the following objects CANNOT be used in a Script Action script?

A.
previous
A.
previous
Answers
B.
GlideRecord
B.
GlideRecord
Answers
C.
event
C.
event
Answers
D.
current
D.
current
Answers
Suggested answer: A

Explanation:

https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/platform-events/reference/r_ScriptActions.html

Which script types execute on the server? (Choose three.)

A.
Business Rule
A.
Business Rule
Answers
B.
Client Scripts
B.
Client Scripts
Answers
C.
UI Policies
C.
UI Policies
Answers
D.
Script Actions
D.
Script Actions
Answers
E.
Scheduled Jobs
E.
Scheduled Jobs
Answers
Suggested answer: A, D, E

Explanation:

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

What is the purpose of the Application Picker?

A.
Select an application to run
A.
Select an application to run
Answers
B.
Select an application as a favorite in the Application Navigator
B.
Select an application as a favorite in the Application Navigator
Answers
C.
Choose an application to edit and set the Application Scope
C.
Choose an application to edit and set the Application Scope
Answers
D.
Choose an application to download and install
D.
Choose an application to download and install
Answers
Suggested answer: C

Explanation:

https://docs.servicenow.com/bundle/tokyo-application-development/page/build/applications/concept/c_ApplicationPicker.html

Which method is used to retrieve Application Property values in a script?

A.
gs.getProperty()
A.
gs.getProperty()
Answers
B.
g_form.getAppProperty()
B.
g_form.getAppProperty()
Answers
C.
g_form.getProperty()
C.
g_form.getProperty()
Answers
D.
gs.getAppProperty()
D.
gs.getAppProperty()
Answers
Suggested answer: A

Explanation:

https://developer.servicenow.com/dev.do#!/learn/learning-plans/tokyo/new_to_servicenow/app_store_learnv2_automatingapps_tokyo_use_application_properties

Which of the following statements is NOT true for the Form Designer?

A.
To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
A.
To add a section to the form layout, drag it from the Field Types tab to the desired destination on the form.
Answers
B.
To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
B.
To add a field to the form layout, drag the field from the Fields tab to the desired destination on the form.
Answers
C.
To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
C.
To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X) button.
Answers
D.
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.
D.
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.
Answers
Suggested answer: A

Explanation:

https://docs.servicenow.com/bundle/tokyo-platform-administration/page/administer/form-administration/concept/c_FormDesign.html

Which one of the following is NOT an example of when an application might use a Scheduled Script Execution (Scheduled Job)?

A.
The application needs to send weekly email reminders to requestors for all records on a table
A.
The application needs to send weekly email reminders to requestors for all records on a table
Answers
B.
The application needs to run a clean up script on the last day of every month
B.
The application needs to run a clean up script on the last day of every month
Answers
C.
The application needs to query the database every day to look for unassigned records
C.
The application needs to query the database every day to look for unassigned records
Answers
D.
The application needs to run a client-side script at the same time every day
D.
The application needs to run a client-side script at the same time every day
Answers
Suggested answer: D

Explanation:

An example of when an application might not use a Scheduled Script Execution (Scheduled Job) is when the application needs to run a client-side script at the same time every day. A Scheduled Script Execution is a server-side script that runs on a specified schedule and performs some action on the server or database. A client-side script runs on the user's browser and cannot be scheduled by ServiceNow. The other options are examples of when an application might use a Scheduled Script Execution, such as sending email reminders, running a clean up script, or querying the database for unassigned records.

Reference:Scheduled Script Execution,Client scripts

Total 199 questions
Go to page: of 20