[Oct 02, 2025] Get Up-To-Date Real Exam Questions for CAD with New Materials [Q32-Q51]

Share

[Oct 02, 2025] Get Up-To-Date Real Exam Questions for CAD with New Materials

Updated CAD Certification Exam Sample Questions

NEW QUESTION # 32
For Application Access there is a configuration option called Allow access to this table via web services. Which one of the following statements is true when this option is selected?

  • A. The user performing the query via web services must have the correct permissions to access the table's records
  • B. Even when not selected, users with the correct permissions can use web services to access the table's records
  • C. This option restricts the ability to delete records via web services but records can always be read
  • D. This option restricts access only to SOAP web services but does not apply to REST

Answer: A

Explanation:
Application Access is a feature that allows you to control the access level of other application scopes to your application's data tables. By selecting the Allow access to this table via web services option, you can enable other application scopes to access your data tables using web services, such as SOAP or REST. However, the user performing the query via web services must have the correct permissions to access the table's records. The user must have the appropriate roles and access controls to perform the operations on the table, such as create, read, write, or delete.
The other statements are not true when this option is selected. This option does not restrict the ability to delete records via web services, nor does it allow records to be always read. The access to the records depends on the user's permissions and the web service method. This option also does not restrict access only to SOAP web services, but applies to both SOAP and REST web services. Finally, this option is not the only way to enable web service access to the table's records. Even when this option is not selected, users with the correct permissions can use web services to access the table's records, as long as they specify the application scope in the web service request.
References:
Application Access
Web service access to scoped applications


NEW QUESTION # 33
Which one of the following is true?

  • A. The execution order for a UI Policy's Scripts and Actions is determined at runtime
  • B. A UI Policy's Scripts execute before the UI Policy's Actions
  • C. A UI Policy's Actions and Scripts execute at the same time
  • D. A UI Policy's Actions execute before the UI Policy's Scripts

Answer: D

Explanation:
Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory.


NEW QUESTION # 34
Identify the incorrect statement about Delegated Development in ServiceNow.

  • A. Administrators can grant the developer access to script fields.
  • B. Administrators can grant non-admin users the ability to develop global applications.
  • C. Administrators can grant the developer access to security records.
  • D. Administrators can specify which application file types the developer can access.

Answer: B

Explanation:
Administrators can grant non-admin users the ability to develop global applications. Delegated Development is for the scoped applications only


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

  • A. Download and install a third-party application from the ServiceNow Store
  • B. Download and install an application from the ServiceNow Share web site
  • C. Select the Copy button on the application record
  • D. Install an application from the Application Repository

Answer: C

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


NEW QUESTION # 36
What is a 'workflow context'?

  • A. The business reason or process for which a workflow is designed
  • B. It is generated from a workflow version, executes activities, and follows transitions
  • C. The table for which a workflow is defined, plus any conditions such as 'Active is true'
  • D. A checked-out workflow that is being edited

Answer: B

Explanation:
In ServiceNow, a workflow context refers to a specific instance of a workflow execution. When a workflow is initiated-whether by inserting or updating a record, triggering an event, or through scripts-the system creates a workflow context. This context is derived from a particular version of the workflow and is responsible for executing the defined activities and following the specified transitions within that workflow.
Key points about workflow context:
* Instance of Execution: Each time a workflow runs, a new context is created to manage that specific execution instance. This allows multiple instances of the same workflow to operate independently and simultaneously.
* Execution of Activities: The context manages the progression through the workflow's activities, ensuring that each step is executed in the defined order and under the specified conditions.
* Tracking and Management: Workflow contexts enable administrators to monitor the state and progress of workflow executions. They provide visibility into which activities have been completed, which are pending, and any transitions that have occurred.
For example, if a workflow is designed to handle approval processes, each time an approval is initiated, a new workflow context is created to manage that particular approval instance. This context will track the approval's progress, manage notifications, and handle any branching logic defined in the workflow.
Reference: For more detailed information, please refer to the official ServiceNow documentation on Workflow Contexts.


NEW QUESTION # 37
Assume a table called table exists and contains 3 fields: field1. field2, field3. Examine the Access Control list for table:
table.None read Access Control for users with the admin and itil roles
table. * read Access Control for users with the admin role
table. field3 read Access Control for users with the itil role
Which field or fields can a user with the itil role read?

  • A. field 1 andfield3
  • B. field3 only
  • C. field1, field2. andfield3
  • D. All fields except field3

Answer: B

Explanation:
An Access Control list (ACL) defines what data users can access and how they can access it in ServiceNow tables1. The ACL evaluates the user roles and the conditions defined in the ACL rules to determine the user's access level2. In this case, the ACL rules for the table are as follows:
table.None read Access Control for users with the admin and itil roles: This means that users with the admin or itil roles cannot read any field in the table unless there is a more specific rule that grants them access3.
table. * read Access Control for users with the admin role: This means that users with the admin role can read all fields in the table.
table. field3 read Access Control for users with the itil role: This means that users with the itil role can read only the field3 in the table.
Therefore, a user with the itil role can read only the field3 in the table, and not the other fields.
Reference = 1: Access Control Lists - ServiceNow Docs 2: How ACL Rules Are Evaluated - ServiceNow Docs 3: Access Control List Rules - ServiceNow Docs : Wildcard in ACL Rules - ServiceNow Docs : Field-Level ACL Rules - ServiceNow Docs


NEW QUESTION # 38
Which Application Access configuration field(s) are NOT available if the Can read configuration field is NOT selected?

  • A. Allow configuration
  • B. Can read does not affect the availability of other Application Access fields
  • C. All access to this table via web services
  • D. Can create, Can update, and Can delete

Answer: C


NEW QUESTION # 39
Which of the following statements is true about Guided Application Creator?

  • A. A scope application user role is automatically created
  • B. The global scope option is turned on by default
  • C. Default access controls are automatically created
  • D. The welcome screen appears every time a new application is created

Answer: D

Explanation:
The welcome screen appears every time a new application is created through the Guided Application Creator. The welcome screen provides an overview of the steps involved in creating an application, such as defining the app name, scope, and tables, configuring the app user interface, and publishing the app. The other options are not true about the Guided Application Creator. The global scope option is turned off by default, as it is recommended to create applications in their own scope for better security and performance. A scope application user role is not automatically created, as the user can choose to create one or use an existing role for the app access control. Default access controls are not automatically created, as the user can define the read, write, create, and delete permissions for each table in the app. Reference: Guided App Creator


NEW QUESTION # 40
Which one of the following is NOT a UI Action type?

  • A. List choice
  • B. List banner button
  • C. Form choice
  • D. Form button

Answer: C

Explanation:
A UI Action is a button, link, or choice that can be clicked by a user to perform an action, such as submitting a form or running a script. The following are UI Action types:
List choice. This is a UI Action that appears as a choice list on a list of records. It can be used to perform an action on multiple records at once, such as deleting or updating them.
Form button. This is a UI Action that appears as a button on a form. It can be used to perform an action on the current record, such as saving or approving it.
List banner button. This is a UI Action that appears as a button on the banner of a list of records. It can be used to perform an action on the entire list, such as exporting or printing it.
The following is not a UI Action type:
Form choice. This is not a UI Action type, but a field type. A form choice is a field that displays a choice list on a form. It can be used to select a value from a predefined set of options, such as priority or state. References: UI Actions, Field Types


NEW QUESTION # 41
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.hasRoleOnly('catalog_admin')
  • B. g_user.hasRoleExactly('catalog_admin')
  • C. g_user.hasRole('catalog_admin')
  • D. g_user.hasRoleFromList('catalog_admin')

Answer: B

Explanation:
The method call that returns true only if the currently logged in user has the catalog_admin role and in no other case is g_user.hasRoleExactly('catalog_admin'). This method checks if the user has exactly one role, and returns true if it matches the argument. The other methods return true if the user has one or more roles, or if the user has any role from a list of arguments. References: [ServiceNow Docs - GlideUser API],
[ServiceNow Community - Difference between hasRole() and hasRoleExactly()] Reference: https://community.servicenow.com/community? id=community_QUESTION NO:
&sys_id=dff705e6db7757c0d58ea345ca96196b


NEW QUESTION # 42
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?

  • A. field3 only
  • B. All fields except field3
  • C. All fields
  • D. filed1 and field3

Answer: B

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


NEW QUESTION # 43
Which one of the following is true?

  • A. The execution order for a UI Policy's Scripts and Actions is determined at runtime
  • B. A UI Policy's Scripts execute before the UI Policy's Actions
  • C. A UI Policy's Actions and Scripts execute at the same time
  • D. A UI Policy's Actions execute before the UI Policy's Scripts

Answer: D

Explanation:
Created UI policy on incident form, action set's cmdb_ci field as mandatory and script as not. result, field was not mandatory.
A UI Policy's Actions execute before the UI Policy's Scripts. Actions are predefined operations that can be applied to fields or sections, such as making them mandatory, read-only, visible, or setting a default value.
Scripts are custom JavaScript code that can be used to perform more complex logic or validations. Actions are executed first, and then Scripts are executed if the UI Policy conditions are met. References: [ServiceNow Docs - UI policy actions], [ServiceNow Docs - UI policy scripts]


NEW QUESTION # 44
Once an application is ready to share, which of the following methods of publishing are supported by ServiceNow? (Choose 3 answers)

  • A. Publish to an update set
  • B. Publish to a spreadsheet
  • C. Publish to a local drive
  • D. Publish to the ServiceNow Store
  • E. Publish to a local USB device
  • F. Publish to an application repository

Answer: A,D,F

Explanation:
ServiceNow provides several methods for developers to publish and share applications once they are ready for distribution. The supported methods include:
* Publish to an application repository: This method allows developers to publish their applications to a centralized repository, enabling easy distribution and installation across multiple ServiceNow instances.
The application repository serves as a hub where applications can be stored and accessed by other instances. snowunderground.com Publish to an application repository: This method allows developers to publish their applications to a centralized repository, enabling easy distribution and installation across multiple ServiceNow instances.
The application repository serves as a hub where applications can be stored and accessed by other instances. snowunderground.com
* Publish to the ServiceNow Store: Developers can submit their applications to the ServiceNow Store, a marketplace where applications are reviewed, certified, and made available to all ServiceNow customers. Publishing to the Store involves a certification process to ensure the application meets ServiceNow's standards. support.servicenow.com Publish to the ServiceNow Store: Developers can submit their applications to the ServiceNow Store, a marketplace where applications are reviewed, certified, and made available to all ServiceNow customers. Publishing to the Store involves a certification process to ensure the application meets ServiceNow's standards. support.servicenow.com
* Publish to an update set: An update set is a container for capturing configuration changes in ServiceNow. Developers can publish applications to an update set, which can then be moved between instances, allowing for the transfer of application configurations and customizations. servicenow.com Publish to an update set: An update set is a container for capturing configuration changes in ServiceNow. Developers can publish applications to an update set, which can then be moved between instances, allowing for the transfer of application configurations and customizations. servicenow.com Options A (Publish to a spreadsheet), D (Publish to a local USB device), and F (Publish to a local drive) are not supported methods for publishing applications in ServiceNow. These options do not align with the platform's mechanisms for application distribution and deployment.


NEW QUESTION # 45
What is the ServiceNow store?

  • A. The source for ServiceNow Community created developer content
  • B. Downloadable content ServiceNow script archive
  • C. Alternate name for the ServiceNow Developer Share site
  • D. Marketplace for free and paid certified ServiceNow applications and integrations

Answer: D

Explanation:
The ServiceNow Store is a marketplace for free and paid certified ServiceNow applications and integrations.
The ServiceNow Store provides customers with access to Now Certified enterprise workflow apps from partners that complement and extend ServiceNow products and solutions. Customers can browse, try, buy, and deploy apps and integrations that suit their needs and enhance their ServiceNow experience. The ServiceNow Store is not the source for ServiceNow Community created developer content, as that is available on the Developer Portal or the Share site. The ServiceNow Store is not a downloadable content ServiceNow script archive, as that is available on the Script Library or the Script Repository. The ServiceNow Store is not an alternate name for the ServiceNow Developer Share site, as that is a separate site where developers can share applications, code snippets, UI pages, etc. Reference: ServiceNow Store


NEW QUESTION # 46
What function do you use to add buttons, links, and context menu items on forms and lists?

  • A. Ul Settings
  • B. Ul Config
  • C. UI Actions
  • D. Ul Policies

Answer: C


NEW QUESTION # 47
Why create Applications in ServiceNow?
A) To replace outdated inadequate custom business applications and processes B) To extend service delivery and management to all enterprise departments C) To allow users full access to all ServiceNow tables, records and fields D) To extend the value of ServiceNow

  • A. a b and c
  • B. b c and d
  • C. a b c and d
  • D. a b and d

Answer: D

Explanation:
Creating applications in ServiceNow can help businesses replace outdated, inadequate, custom business applications and processes, extend service delivery and management to all enterprise departments, and extend the value of ServiceNow by leveraging its platform capabilities and integrations1234.
References = 1: What are Application Services? - ServiceNow 2: What is Application Development? - ServiceNow 3: Custom Applications in ServiceNow - The Cloud People 4: Build Custom Apps in ServiceNow - eBook - ServiceNow


NEW QUESTION # 48
In an Email Notification, which one of the following is NOT true for the Weight field?

  • A. The Weight value defaults to zero
  • B. Only Notifications with the highest weight for the same record and recipients are sent
  • C. A Weight value of zero means that no email should be sent
  • D. A Weight value of zero means the Notification is always sent when the Notification's When to send criteria is met

Answer: C

Explanation:
https://docs.servicenow.com/bundle/tokyo-servicenow-platform/page/administer/notification/task/t_CreateANotification.html
https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/new_to_servicenow/app_store_learnv2_automatingapps_quebec_when_to_send


NEW QUESTION # 49
The source control operation used to store local changes on an instance for later application is called a(n)
<blank>.

  • A. Tag
  • B. Stash
  • C. Branch
  • D. Update set

Answer: C

Explanation:
The source control operation used to store local changes on an instance for later application is called a stash. A stash is a temporary storage area for uncommitted changes that are not ready to be pushed to a remote repository. Developers can use stashes to save their work in progress without committing it to the local repository or discarding it. Stashes can be applied later to restore the changes to the working directory, or dropped if they are no longer needed. References: [ServiceNow Docs - Stash local changes], [ServiceNow Docs - Source control]


NEW QUESTION # 50
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. All application scopes can read from the table
  • D. Only artifacts in the table's application can read from the table

Answer: C

Explanation:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_DefaultDesignAccessPermissions.html The baseline behavior of a table in a privately-scoped application is that all application scopes can read from the table. A privately-scoped application is an application that restricts write access to its tables and resources to scripts within the same scope. However, read access is allowed by default for all scopes, unless the administrator explicitly denies it using an Access Control rule. This allows for data sharing between different applications while maintaining data integrity and security. Reference: [Product Documentation | ServiceNow], [Advantages of Scoped Applications in ServiceNow]


NEW QUESTION # 51
......

CAD Study Guide Cover to Cover as Literally: https://www.realexamfree.com/CAD-real-exam-dumps.html

Get Unlimited Access to CAD Certification Exam Cert Guide: https://drive.google.com/open?id=18z6zRhKA6CDgPBCzBl_Bk-VOuhyxjzVw