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

ServiceNow CAD Practice Test - Questions Answers, Page 8

List of questions

Question 71

Report
Export
Collapse

Which class is NOT part of the Client side scoped APIs?

GuideDialogWindow
GuideDialogWindow
GuideAjex
GuideAjex
GuideRecord
GuideRecord
GuideForm
GuideForm
Suggested answer: C

Explanation:

This class allows you to create and manipulate dialog windows on the user interface. You can use this class to display messages, forms, or custom HTML content in a modal window.

GuideAjex: This class allows you to make asynchronous calls to the server and process the response. You can use this class to retrieve data, execute scripts, or perform actions on the server without reloading the page.

GuideForm: This class allows you to access and manipulate the fields and values on a form. You can use this class to get or set field values, show or hide fields, add or remove options, or validate field inputs.

The class GuideRecord is not part of the Client side scoped APIs. GuideRecord is part of the Server side scoped APIs, which are a set of classes and methods that allow you to interact with the database and perform server-side logic on the ServiceNow platform. GuideRecord is a class that represents a record in a table and allows you to query, insert, update, or delete records on the server.

References:

[Client side scoped APIs]

[Server side scoped APIs]

asked 23/09/2024
Peter Jennings
34 questions

Question 72

Report
Export
Collapse

When designing and creating a form, what do you create to organize fields on a form?

Related lists
Related lists
Tabs
Tabs
Sections
Sections
Buttons
Buttons
Suggested answer: C

Explanation:

When designing and creating a form, you can create sections to organize fields on a form. Sections are containers that group related fields together and provide a label and a description for the group. You can use sections to improve the readability and usability of the form. You can also collapse or expand sections to show or hide the fields within them.

The other options are not valid ways to organize fields on a form. Related lists are not fields, but lists of records that are related to the current record on the form. Tabs are not part of the form, but part of the application menu that allows you to navigate between different modules. Buttons are not fields, but elements that perform actions on the form, such as saving, updating, or deleting the record.

References:

[Form sections]

[Related lists]

[Application menus and modules]

[Form buttons]

asked 23/09/2024
JORGE ROCHA
35 questions

Question 73

Report
Export
Collapse

Which of the following is a good practice for adding instructions to a form?

Annotations
Annotations
Related links to wiki pages
Related links to wiki pages
A context Menu UI Action
A context Menu UI Action
A population read-only field
A population read-only field
Suggested answer: A

Explanation:

'Add instructional text and other design elements to your forms by using form annotations in Form Builder.' https://docs.servicenow.com/bundle/sandiego-application-development/page/administer/form-builder/task/create-form-annotations.html

asked 23/09/2024
Rajeev R Kumar
36 questions

Question 74

Report
Export
Collapse

Which of the following GuideRecord methods run a query against a database table?

Choose 3 answers

-query( )
-query( )
runQuery()
runQuery()
query()
query()
-get()
-get()
get(
get(
Suggested answer: A, C, E

Explanation:

https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/GlideQuery/concept/GlideQueryGlobalAPI.html#GlideQueryAPI

https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/glideRecordScoped/concept/c_GlideRecordScopedAPI.html

asked 23/09/2024
Subhendu Bhattacharyya
36 questions

Question 75

Report
Export
Collapse

Client-side scripts manage what?

Forms and Forms Fields
Forms and Forms Fields
Playbook access
Playbook access
Database and backend
Database and backend
User access
User access
Suggested answer: A

Explanation:


asked 23/09/2024
Mario Perez Hervas
34 questions

Question 76

Report
Export
Collapse

In a Business Rule, which one of the following returns the sys_id of the currently logged in user?

g_form getUserID()
g_form getUserID()
g_form getUserSysy
g_form getUserSysy
gs.getUserSysID()
gs.getUserSysID()
gs.getUserID()
gs.getUserID()
Suggested answer: D

Explanation:

https://docs.servicenow.com/bundle/tokyo-application-development/page/app-store/dev_portal/API_reference/glideSystemScoped/concept/c_GlideSystemScopedAPI.html

asked 23/09/2024
Simon Liu
36 questions

Question 77

Report
Export
Collapse

Access Control debug information identification whether each element of an Access Control granted of denied access. The elements of an Access Control evaluated?

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

Explanation:

The elements of an Access Control are evaluated in the following order: Conditions, Roles, Script. The Conditions are a set of criteria that must be met for the Access Control to apply. The Roles are a list of user roles that are required to access the object. The Script is an optional script that can further restrict or allow access based on custom logic. If any of these elements return false, the Access Control denies access and stops evaluating the remaining elements.

Reference:Access control rules

asked 23/09/2024
Vito Ranieri
44 questions

Question 78

Report
Export
Collapse

What plugin enables the Guided Application Creator?

com.glide.sn-guided-app-creator
com.glide.sn-guided-app-creator
com.glide.service_creator
com.glide.service_creator
com.glide.snc.apps_creator
com.glide.snc.apps_creator
com.snc.apps_creator_template
com.snc.apps_creator_template
Suggested answer: A

Explanation:

'Guided Application Creator is enabled via the Guided Application Creator (com.glide.sn-guided-app-creator) plugin, which is active by default in the Now Platform.' Located under 'Activation Information' section at this URL:

https://docs.servicenow.com/en-US/bundle/tokyo-application-development/page/build/guided-app-creator/concept/guided-app-creator.html

asked 23/09/2024
Zakarya Doqa
23 questions

Question 79

Report
Export
Collapse

When writing a Client Script to provide feedback targeted at a specific field, which method should be used?

g_form.showInfoMessage()
g_form.showInfoMessage()
g_form.showFieldMsg()
g_form.showFieldMsg()
g_form.addInfoMessage()
g_form.addInfoMessage()
g_form.addFieldMsg()
g_form.addFieldMsg()
Suggested answer: B

Explanation:

https://docs.servicenow.com/bundle/tokyo-application-development/page/script/useful-scripts/reference/r_DisplayFieldMessages.html

asked 23/09/2024
Tyler Raymond
39 questions

Question 80

Report
Export
Collapse

When creating an application through the Guided Application Creator, which of the following is a user experience option?

Portal
Portal
Mobile
Mobile
Self-service
Self-service
Workspace
Workspace
Suggested answer: B

Explanation:

https://docs.servicenow.com/bundle/tokyo-application-development/page/build/guided-app-creator/concept/guided-app-creator.html

asked 23/09/2024
GISELE AGNARAMON
45 questions
Total 223 questions
Go to page: of 23