CAD Exam Questions Flashcards
Which of the following statements is true for the Form Designer?
a) To add a field to the form layout, drag the field from the Fields tab to the
desired destination on the form.
b) 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.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X)
button.
d) 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 field to the form layout, drag the field from the Fields tab to the
desired destination on the form.
b) 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.
c) To remove a field from the form layout, hover over the field to enable the Action buttons, and select the Delete (X)
button.
Which of the following are configured in an Email Notification?
a) Who will receive the notification.
b) What content will be in the notification.
c) When to send the notification.
d) How to send the notification.
a) Who will receive the notification.
b) What content will be in the notification.
c) When to send the notification.
To see what scripts, reports, and other application artifacts will be in a published application:
A. Enter the name of the Application in the Global search field
B. Open the list of Update Sets for the instance
C. Examine the Application Files Related List in the application to be published
D. Open the artifact records individually to verify the value in the Application field
C. Examine the Application Files Related List in the application to be published
https://community.servicenow.com/community?id=community_article&sys_id=d2dce665dbd0dbc01dcaf3231f9619fe
Which one of the following is NOT a debugging strategy for client-side scripts?
A. g_form.addInfoMessage()
B. Field Watcher
C. jslog()
D. gs.log()
D. gs.log()
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?
A. All access to this table via web services
B. Can create, Can update, and Can delete
C. Can read does not affect the availability of other Application Access fields
D. Allow configuration
B. Can create, Can update, and Can delete
Which of the following is NOT a trigger type in Flow Designer?
A. Outbound Email
B. Application
C. Record
D. Schedule
A. Outbound Email
When creating new application files in a scoped application, cross scope access is turned on by default in which of the following?
A. REST messages
B. Table
C. Script Include
D. Workflow
B. Table
In an Email Notification, which one of the following is NOT true for the Weight field?
A. Only Notifications with the highest weight for the same record and recipients are sent
B. A Weight value of zero means that no email should be sent
C. The Weight value defaults to zero
D. A Weight value of zero means the Notification is always sent when the Notification’s When to send criteria is met
B. A Weight value of zero means that no email should be sent
Which of the following objects does a Display Business Rule NOT have access to?
A. previous
B. GlideSystem
C. g_scratchpad
D. current
A. previous
Which of the following features are available to Global applications? (Choose two.)
A. Automated Test Framework
B. Source Control
C. Delegated Development
D. Flow Designer
A and D
Which one of the following is NOT a UI Action type?
A. List choice
B. Form button
C. List banner button
D. Form choice
D. Form choice
Which of the following is NOT supported by Flow Designer?
A. Call a subflow from a flow
B. Test a flow with rollback
C. Use Delegated Developer
D. Run a flow from a MetricBase Trigger
B. Test a flow with rollback
Which of the following are true for reports in ServiceNow? (Choose three.)
A. Any user can see any report shared with them.
B. Can be a graphical representation of data.
C. All users can generate reports on any table.
D. Can be run on demand by authorized users.
E. Can be scheduled to be run and distributed by email.
B. Can be a graphical representation of data.
D. Can be run on demand by authorized users.
and
E. Can be scheduled to be run and distributed by email.
Modules must have a Link type. Which one of the following is a list of Link types?
A. List of Records, Separator, Catalog Type, Roles
B. Assessment, List of Records, Separator, Timeline Page
C. List of Records, Content Page, Order, URL (from arguments:)
D. Assessment, List of Records, Content Page, Roles
B. Assessment, List of Records, Separator, Timeline Page
Which one of the following is true for a table with the Allow configuration
Application Access option selected?
A. Only the in scope application’s scripts can create Business Rules for the table
B. Any user with the application’s user role can modify the application’s scripts
C. Out of scope applications can create Business Rules for the table
D. Out of scope applications can add new tables to the scoped application
C. Out of scope applications can create Business Rules for the table
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?
A. base table
B. child table
C. parent table
D. all tables
B. child table
Which one of the following is true?
A. A UI Policy’s Actions execute before the UI Policy’s Scripts
B. The execution order for a UI Policy’s Scripts and Actions is determined at runtime
C. A UI Policy’s Scripts execute before the UI Policy’s Actions
D. A UI Policy’s Actions and Scripts execute at the same time
A. A UI Policy’s Actions execute before the UI Policy’s Scripts
https://community.servicenow.com/community?id=community_question&sys_id=5cf5d3f7db72f784f7fca851ca96199b
Here is the Business Rule script template:
(function executeRule (current, previous /null when async/)
{}) (current, previous);
This type of JavaScript function is known as:
A. Constructor
B. Scoped
C. Anonymous
D. Self-invoking
D. Self-invoking
Which method call returns true only if the currently logged in user has the catalog_admin role and in no other case?
A. g_user.hasRole(‘catalog_admin’)
B. g_user.hasRoleExactly(‘catalog_admin’)
C. g_user.hasRoleOnly(‘catalog_admin’)
D. g_user.hasRoleFromList(‘catalog_admin’)
B. g_user.hasRoleExactly(‘catalog_admin’)
https://community.servicenow.com/community?id=community_question&sys_id=dff705e6db7757c0d58ea345ca96196b
There is a basic strategy when creating a Utils Script Include. Identify the step that does not belong.
A. Identify the table
B. Script the function(s)
C. Create a class
D. Create a prototype object from the new class
A. Identify the table
Which roles grant access to source control repository operations such as importing applications from source control, or linking an application to source control? (Choose two.)
* A. source_control
* B. source_control_admin
* C. admin
* D. git_admin
- A. source_control
and - C. admin
https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/task/t_LinkAnApplicationToSourceControl.html
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
* A. ${event.<property>}
* B. ${current.<property>}
* C. ${<property>.getDisplayValue()}
* D. ${gs.<property>}</property></property></property></property>
- A. ${event.<property>}</property>
https://community.servicenow.com/community?id=community_question&sys_id=e017cbe5db1cdbc01dcaf3231f9619a3
Which one of the following is true for a Script Include with a Protection Policy value of Protected?
* A. Any user with the protected_edit role can see and edit the Script Include
* B. The Protection policy option can only be enabled by a user with the admin role
* C. The Protection Policy is applied only if the glide.app.apply_protection system property value is true
* D. The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store
D. The Protection Policy is applied only if the application is downloaded from the ServiceNow App Store
Which one of the following is true for GlideUser (g_user) methods?
* A. Can be used in Client Scripts and UI Policies only
* B. Can be used in Business Rules only
* C. Can be used in Client Scripts, UI Policies, and UI Actions
* D. Can be used in Business Rules, and Scripts Includes
C. Can be used in Client Scripts, UI Policies, and UI Actions
When configuring a module, what does the Override application menu roles configuration option do?
* A. Users with the module role but without access to the application menu access the module
* B. Self-Service users can access the module even though they do not have roles
* C. Admin is given access to the module even if Access Controls would ordinarily prevent access
* D. Users with access to the application menu can see the module even if they don’t have the module role
A. Users with the module role but without access to the application menu access the module
Which platform feature can be used to determine the relationships between field in an Import Set table to field in an existing ServiceNow table?
* A. Business Service Management Map
* B. Data Sources
* C. Transform Map
* D. CI Relationship Builder
C. Transform Map
https://community.servicenow.com/community?id=community_question&sys_id=69fc8369db9cdbc01dcaf3231f961935
When configuring a REST Message, the Endpoint is:
* A. The commands to the REST script to stop execution
* B. The URI of the data to be accessed, queried, or modified
* C. Information about the format of the returned data
* D. The response from the provider indicating there is no data to send back
B. The URI of the data to be accessed, queried, or modified
https://docs.servicenow.com/bundle/orlando-application-development/page/integrate/outbound-rest/reference/r_RESTMessageElements.html
When evaluating Access Controls, ServiceNow searches and evaluates:
* A. Only for matches on the current table
* B. Only for matches on the current field
* C. From the most specific match to the most generic match
* D. From the most generic match to the most specific match
C. From the most specific match to the most generic match
In a Business Rule, which one of the following returns true if the currently logged in user has the admin role?
* A. g_form.hasRoleExactly(‘admin’)
* B. gs.hasRole(‘admin’)
* C. g_form.hasRole(‘admin’)
* D. gs.hasRoleExactly(‘admin’)
B. gs.hasRole(‘admin’)
From the list below, identify one reason an application might NOT be a good fit with ServiceNow.
The application:
* A. Needs workflow to manage processes
* B. Requires ג€as-is ג€ use of low-level programming libraries
* C. Requires reporting capabilities
* D. Uses forms extensively to interact with data
B. Requires ג€as-is ג€ use of low-level programming libraries
Identify the incorrect statement about Delegated Development in ServiceNow.
* A. Administrators can grant non-admin users the ability to develop global applications.
* B. Administrators can specify which application file types the developer can access.
* C. Administrators can grant the developer access to script fields.
* D. Administrators can grant the developer access to security records.
A. Administrators can grant non-admin users the ability to develop global applications.
One of the uses of the ServiceNow REST API Explorer is:
* A. Practice using REST to interact with public data providers
* B. Find resources on the web for learning about REST
* C. Convert SOAP Message functions to REST methods
* D. Create sample code for sending REST requests to ServiceNow
D. Create sample code for sending REST requests to ServiceNow
Which one of the following is true regarding Application Scope?
* A. All applications are automatically part of the Global scope
* B. Applications downloaded from 3 party ServiceNow application developers cannot have naming conflicts rd
* C. Any developer can edit any application
* D. Developers can choose the prefix for a scope’s namespace
B. Applications downloaded from 3 party ServiceNow application developers cannot have naming conflicts rd
Which one of the following is the baseline behavior of a table in a privately-scoped application?
* A. The table and its data are not accessible using web services
* B. Any Business Rule can read, write, delete, and update from the table
* C. Only artifacts in the table’s application can read from the table
* D. All application scopes can read from the table
D. All application scopes can read from the table
Which one of the following is NOT a purpose of application scoping?
* A. Provide a relationship between application artifacts
* B. Provide a way of tracking the user who developed an application
* C. Provide a namespace (prefix and scope name) to prevent cross application name collisions
* D. Provide controls for how scripts from another scope can alter tables in a scoped application
B. Provide a way of tracking the user who developed an application
It is best practice to define the business requirements and the process(es) an application will manage as part of the application development plan. What are some of the considerations to document as part of the business process?
* A. Business problem, data input/output, users/stakeholders, and process steps
* B. Business problem, data input/output, project schedule, and process steps
* C. Business problem, data input/output, users/stakeholders, and database capacity
* D. Business problem, users/stakeholders, available licenses, and database capacity
A. Business problem, data input/output, users/stakeholders, and process steps
Which of the following statements does NOT apply when extending an existing table?
* A. The parent table’s Access Controls are evaluated when determining access to the new table’s records and fields
* B. The new table inherits the functionality built into the parent table
* C. The new table inherits all of the fields from the parent table
* D. You must script and configure all required behaviors
D. You must script and configure all required behaviors
Which of the following CANNOT be debugged using the Field Watcher?
* A. Business Rules
* B. Script Includes
* C. Client Scripts
* D. Access Controls
B. Script Includes
Which objects can be used in Inbound Action scripts?
* A. current and previous
* B. current and email
* C. current and event
* D. current and producer
B. current and email
Which objects can be used in Inbound Action scripts?
* A. current and previous
* B. current and email
* C. current and event
* D. current and producer
B. current and email
Which one of the following is part of the client-side scripting API?
* A. workflow.scratchpad
* B. GlideUser object (g_user)
* C. current and previous objects
* D. GlideSystem object (gs)
B. GlideUser object (g_user)
Application developers configure ServiceNow using industry standard JavaScript to`¦
- A. Enable the right-click to edit the context menus on applications in the navigator
- B. Extend and add functionality
- C. Customize the organization’s company logo and banner text
- D. Configure the outgoing email display name
B. Extend and add functionality
How many applications menus can an application have?
* A. 3, one for an application’s user modules, one for an application’s administrator modules, and one for the ServiceNow administrator’s modules
* B. As many as the application design requires
* C. 2, one for an application’s user modules and one for an application’s administrator modules
* D. 1, which is used for all application modules
B. As many as the application design requires
Reference:
https://docs.servicenow.com/bundle/orlando-platform-user-interface/page/administer/navigation-andui/
task/t_CreateAnApplicationMenu.html
The source control operation used to store local changes on an instance for later application is called a(n) ____________.
- A. Branch
- B. Tag
- C. Stash
- D. Update set
C. Stash
https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/task/t_StashLocalChanges.html
What syntax is used in a Record Producer script to access values from Record Producer form fields?
* A. producer.field_name
* B. producer.variablename
* C. current.variable_name
* D. current.field_name
B. producer.variablename
https://community.servicenow.com/community?id=community_question&sys_id=cc3803addb1cdbc01dcaf3231f9619b6
Which of the following methods prints a message on a blue background to the top of the current form by default?
* A. g_form.addInfoMsg()
* B. g_form.addInfoMessage()
* C. g_form.showFieldMessage()
* D. g_form.showFieldMsg()
B. g_form.addInfoMessage()
A scoped application containing Flow Designer content dedicated to a particular application is called a(n):
* A. Spoke
* B. Bundle
* C. Action
* D. Flow
A. Spoke
https://community.servicenow.com/community?id=community_blog&sys_id=7b3af354db93ab80afc902d5ca9619bc
What is a Module?
* A. The functionality within an application menu such as opening a page in the content frame or a separate tab or window
* B. A group of menus, or pages, providing related information and functionality to end-users
* C. A way of helping users quickly access information and services by filtering the items in the Application Navigator
* D. A web-based way of providing software to end-users
A. The functionality within an application menu such as opening a page in the content frame or a separate tab or window
Which source control operation is available from BOTH Studio and the Git Repository?
* A. Create Branch
* B. Apply Remote Changes
* C. Stash Local Changes
* D. Edit Repository Configurations
A. Create Branch
https://docs.servicenow.com/bundle/tokyo-applicationdevelopment/page/build/applications/reference/r_AvailableSourceControlOperations.html
Which one of the following is NOT required to link a ServiceNow application to a Git repository?
* A. Password
* B. URL
* C. User name
* D. Application name
D. Application name
https://docs.servicenow.com/bundle/orlando-application-development/page/build/applications/task/t_LinkAnApplicationToSourceControl.html
Which Report Type(s) can be created by right-clicking on a column header in a table’s list?
* A. Bar Chart, Pie Chart, Histogram, and Line
* B. Bar Chart
* C. Bar Chart, Pie Chart, and Histogram
* D. Bar Chart and Pie Chart
D. Bar Chart and Pie Chart
Which one of the following is NOT a method used for logging messages in a server-side script for a privately-scoped application?
* A. gs.log()
* B. gs.error()
* C. gs.warn()
* D. gs.debug()
A. gs.log()
https://community.servicenow.com/community?id=community_question&sys_id=bd71cb29db98dbc01dcaf3231f9619c6