ExamGecko
Home / ServiceNow / CAD / List of questions
Ask Question

ServiceNow CAD Practice Test - Questions Answers, Page 9

List of questions

Question 81

Report
Export
Collapse

Which one of the following is true for the Application Picker?

All custom application scope and the Global scope appear in the Application Picker
All custom application scope and the Global scope appear in the Application Picker
All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
All applications in ServiceNow, including baseline applications like Incident, appear in the Application Picker
Only custom applications appear in the Application Picker
Only custom applications appear in the Application Picker
Only downloaded applications appear in the Application Picker
Only downloaded applications appear in the Application Picker
Suggested answer: A

Explanation:

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

asked 23/09/2024
Jhonatan Abril
27 questions

Question 82

Report
Export
Collapse

A graphical view of relationships among tables is a <blank>.

Schema map
Schema map
Dependency view
Dependency view
Graphical User Interface
Graphical User Interface
Map source report
Map source report
Suggested answer: A

Explanation:

'Schema map: Provides a graphical representation of the relationships between tables.'

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

asked 23/09/2024
Koos Witkamp
33 questions

Question 83

Report
Export
Collapse

Which of the following steps can be used to import new data into ServiceNow from a spreadsheet?

Select Data Source, Schedule Transform
Select Data Source, Schedule Transform
Load Data, Create Transform Map, Run Transform Most Voted
Load Data, Create Transform Map, Run Transform Most Voted
Define Data Source, Select Transform Map, Run Transform
Define Data Source, Select Transform Map, Run Transform
Select Import Set, Select Transform Map, Run Transform
Select Import Set, Select Transform Map, Run Transform
Suggested answer: B

Explanation:

The steps to import new data into ServiceNow from a spreadsheet are: Load Data, Create Transform Map, Run Transform. Load Data is the process of uploading the spreadsheet file and creating an Import Set table that contains the data to be imported. Create Transform Map is the process of defining how the fields from the Import Set table map to the fields of the target table in ServiceNow. Run Transform is the process of executing the Transform Map and copying the data from the Import Set table to the target table.

Reference:Import sets,Transform maps

asked 23/09/2024
Stefan Finke
41 questions

Question 84

Report
Export
Collapse

Which of the following is NOT a way to install an application on a ServiceNow instance?

Install an application from the Application Repository
Install an application from the Application Repository
Select the Copy button on the application record
Select the Copy button on the application record
Download and install an application from the ServiceNow Share web site
Download and install an application from the ServiceNow Share web site
Download and install a third-party application from the ServiceNow Store
Download and install a third-party application from the ServiceNow Store
Suggested answer: B

Explanation:

There is no 'copy' button on the application record (at least I couldn't see one). Also, see here: https://docs.servicenow.com/bundle/sandiego-application-development/page/build/applications/reference/r_ManagingApplications.html

asked 23/09/2024
Jasper Fons
38 questions

Question 85

Report
Export
Collapse

What are the benefits of storing the majority of an Application's server-side script logic in a Script Include?

a) This makes execution faster.

b) Only run when called from a script.

c) The script logic can be hidden when the Application is installed from the ServiceNow Store.

d. For some changes to application logic there is only one place to make edits.

a, b, and d
a, b, and d
a, b, c, and d
a, b, c, and d
b, c, and d
b, c, and d
a, b, and c
a, b, and c
Suggested answer: C

Explanation:

https://developer.servicenow.com/dev.do#!/learn/courses/tokyo/app_store_learnv2_scripting_tokyo_scripting_in_servicenow/app_store_learnv2_scripting_tokyo_server_side_scripting/app_store_learnv2_scripting_tokyo_script_includes

asked 23/09/2024
Federico Miliacca
33 questions

Question 86

Report
Export
Collapse

Identify the way(s) an application can respond to an Event generated by the gs.eventQueue() method.

a) Script Action

b) Scheduled Script Execution (Scheduled Job)

c) UI Policy

d) Email Notification

b and c
b and c
c
c
a and d
a and d
a and c
a and c
Suggested answer: C

Explanation:

'There are two possible ways to respond to events:

- Email Notification

- Script Action' - see this quote in link below:

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

asked 23/09/2024
Mike Rachuj
34 questions

Question 87

Report
Export
Collapse

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

Caller Tracking
Caller Tracking
Caller Restriction
Caller Restriction
None
None
Caller Permission
Caller Permission
Suggested answer: D

Explanation:

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

asked 23/09/2024
Mohamed Iftiquar Aslam Hameed
37 questions

Question 88

Report
Export
Collapse

Assume a table called table exists and contains 3 fields: field1, field2, field3. Examine the Access Control list for table: Which field or fields can a user with the itil role read?

field3 only
field3 only
filed1 and field3
filed1 and field3
All fields
All fields
All fields except field3
All fields except field3
Suggested answer: D

Explanation:

https://docs.servicenow.com/bundle/tokyo-platform-security/page/administer/contextual-security/concept/access-control-rules.html

asked 23/09/2024
Svetlana Popova
38 questions

Question 89

Report
Export
Collapse

Access Control debug information identifies whether each element of an Access Control granted or denied access. The elements appear in the debug information in the order of evaluation. In which order are the elements of an Access Control evaluated?

Conditions, Roles, Script
Conditions, Roles, Script
Conditions, Script, Roles
Conditions, Script, Roles
Roles, Conditions, Script
Roles, Conditions, Script
Script, Conditions, Roles
Script, Conditions, Roles
Suggested answer: C

Explanation:

'The sequence is ROLES first, then condition, then script.' - Chuck Tomasi says so at this link: https://www.servicenow.com/community/grc-forum/order-of-execution-of-an-acl/m-p/1311962/highlight/true#M6538

asked 23/09/2024
Eduardo Messias Andrade e Oliveira
35 questions

Question 90

Report
Export
Collapse

What are three ServiceNow table creation methods? (Choose three.)

Using legacy Workflows
Using legacy Workflows
Upload and turn a spreadsheet into a custom table
Upload and turn a spreadsheet into a custom table
Using Flow Designer
Using Flow Designer
Use the Now Experience Table Creator
Use the Now Experience Table Creator
Extend a table
Extend a table
Create a custom table
Create a custom table
Suggested answer: B, E, F

Explanation:

'If there are no spreadsheets or existing tables to use for your application, you can create and customize a new table.' see this quote in link below:

https://docs.servicenow.com/bundle/tokyo-application-development/page/build/app-engine-studio/task/create-table.html

Also see:

https://docs.servicenow.com/bundle/tokyo-application-development/page/build/guided-app-creator/task/gac-create-table-from-scratch.html

Also, no search results if search on 'Now Experience Table Creator'.

asked 23/09/2024
JP Pelovello
48 questions
Total 223 questions
Go to page: of 23