ExamGecko
Home Home / ServiceNow / CAD

ServiceNow CAD Practice Test - Questions Answers, Page 8

Question list
Search
Search

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

A.
GuideDialogWindow
A.
GuideDialogWindow
Answers
B.
GuideAjex
B.
GuideAjex
Answers
C.
GuideRecord
C.
GuideRecord
Answers
D.
GuideForm
D.
GuideForm
Answers
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]

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

A.
Related lists
A.
Related lists
Answers
B.
Tabs
B.
Tabs
Answers
C.
Sections
C.
Sections
Answers
D.
Buttons
D.
Buttons
Answers
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]

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

A.
Annotations
A.
Annotations
Answers
B.
Related links to wiki pages
B.
Related links to wiki pages
Answers
C.
A context Menu UI Action
C.
A context Menu UI Action
Answers
D.
A population read-only field
D.
A population read-only field
Answers
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

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

Choose 3 answers

A.
-query( )
A.
-query( )
Answers
B.
runQuery()
B.
runQuery()
Answers
C.
query()
C.
query()
Answers
D.
-get()
D.
-get()
Answers
E.
get(
E.
get(
Answers
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

Client-side scripts manage what?

A.
Forms and Forms Fields
A.
Forms and Forms Fields
Answers
B.
Playbook access
B.
Playbook access
Answers
C.
Database and backend
C.
Database and backend
Answers
D.
User access
D.
User access
Answers
Suggested answer: A

Explanation:


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

A.
g_form getUserID()
A.
g_form getUserID()
Answers
B.
g_form getUserSysy
B.
g_form getUserSysy
Answers
C.
gs.getUserSysID()
C.
gs.getUserSysID()
Answers
D.
gs.getUserID()
D.
gs.getUserID()
Answers
Suggested answer: D

Explanation:

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

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

A.
Conditions, Script, Roles
A.
Conditions, Script, Roles
Answers
B.
Script, Conditions, Roles
B.
Script, Conditions, Roles
Answers
C.
Conditions, Roles, Script
C.
Conditions, Roles, Script
Answers
D.
Roles, Conditions, Script
D.
Roles, Conditions, Script
Answers
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

What plugin enables the Guided Application Creator?

A.
com.glide.sn-guided-app-creator
A.
com.glide.sn-guided-app-creator
Answers
B.
com.glide.service_creator
B.
com.glide.service_creator
Answers
C.
com.glide.snc.apps_creator
C.
com.glide.snc.apps_creator
Answers
D.
com.snc.apps_creator_template
D.
com.snc.apps_creator_template
Answers
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

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

A.
g_form.showInfoMessage()
A.
g_form.showInfoMessage()
Answers
B.
g_form.showFieldMsg()
B.
g_form.showFieldMsg()
Answers
C.
g_form.addInfoMessage()
C.
g_form.addInfoMessage()
Answers
D.
g_form.addFieldMsg()
D.
g_form.addFieldMsg()
Answers
Suggested answer: B

Explanation:

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

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

A.
Portal
A.
Portal
Answers
B.
Mobile
B.
Mobile
Answers
C.
Self-service
C.
Self-service
Answers
D.
Workspace
D.
Workspace
Answers
Suggested answer: B

Explanation:

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

Total 199 questions
Go to page: of 20