Oct 14, 2025 Detailed New CAD Exam Questions for Concept Clearance [Q117-Q134]

Share

Oct 14, 2025 Detailed New CAD Exam Questions for Concept Clearance

CAD Exam Preparation Material with New CAD Dumps Questions.


ServiceNow is a cloud-based platform that provides IT service management (ITSM), IT operations management (ITOM), and IT business management (ITBM) solutions. It helps organizations to automate their workflows, improve efficiency, and enhance customer satisfaction. Many companies are adopting ServiceNow to streamline their business processes, and as a result, the demand for Certified Application Developers (CADs) on this platform is increasing rapidly.

 

NEW QUESTION # 117
Which one of the following is true regarding Application Scope?

  • A. Any developer can edit any application
  • B. Applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts
  • C. Developers can choose the prefix for a scope's namespace
  • D. All applications are automatically part of the Global scope

Answer: B

Explanation:
https://docs.servicenow.com/bundle/rome-application-development/page/build/applications/concept/c_ApplicationScope.html The correct statement regarding Application Scope is that applications downloaded from 3rd party ServiceNow application developers cannot have naming conflicts. Application Scope is a feature that identifies and isolates applications and their related artifacts from other applications. Each scoped application has a unique namespace identifier that consists of a prefix and a scope name. This prevents cross-application name collisions and ensures that only authorized scripts can access or modify data in a scoped application. References: [Product Documentation | ServiceNow], [How To Create a Scoped App in ServiceNow - YouTube]


NEW QUESTION # 118
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

Answer: B


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

  • A. g_form.addFieldMsg()
  • B. g_form.showFieldMsg()
  • C. g_form.showInfoMessage()
  • D. g_form.addInfoMessage()

Answer: B

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


NEW QUESTION # 120
Which module would you use to create a new automation of business logic such as approvals, tasks, and notifications?

  • A. Process Automation > Flow Designer
  • B. Process Automation > Flow Administration
  • C. Process Automation > Process Flow
  • D. Process Automation > Active Flows
  • E. Process Automation > Workflow Editor

Answer: A


NEW QUESTION # 121
What are examples of Ul Actions relating to forms?
Choose 3 answers

  • A. Form View
  • B. Form Context Menu
  • C. Form Columns
  • D. Form Links
  • E. Form Buttons

Answer: B,D,E


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

  • A. Define Data Source, Select Transform Map, Run Transform
  • B. Load Data, Create Transform Map, Run Transform Most Voted
  • C. Select Data Source, Schedule Transform
  • D. Select Import Set, Select Transform Map, Run Transform

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


NEW QUESTION # 123
Which ATF test step is used to set up a specific user profile for testing purposes?

  • A. Create a role
  • B. Impersonation
  • C. Create a group
  • D. Create a user

Answer: B

Explanation:
In the Automated Test Framework (ATF) of ServiceNow, the "Impersonate" test step is used to simulate actions as a specific user. This is crucial for testing functionalities that depend on user roles, permissions, or specific user contexts.
Key Points:
* Purpose: The "Impersonate" step allows the test to execute subsequent steps as if performed by the specified user, ensuring that role-based permissions and access controls are accurately tested.
* Usage: To add an "Impersonate" step:
* Open your test in ATF.
* Click on "Add Test Step."
* Select "Impersonate User."
* Choose the user you want to impersonate for the test.
* Considerations: Ensure that the user being impersonated has the necessary roles and permissions for the actions being tested. Additionally, be aware that impersonation affects both server-side and client- side operations during the test.


NEW QUESTION # 124
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. Data Sources
  • B. Cl Relationship Builder
  • C. Business Service Management Map
  • D. Transform Map

Answer: D

Explanation:
A transform map determines the relationships between fields displaying in an Import Set table and fields in an existing ServiceNow table, such as the Incidents or Users table.


NEW QUESTION # 125
When working in the Form Designer, configuring the label of a field in a child table changes the label on which table(s)?

  • A. parent table
  • B. base table
  • C. child table
  • D. all tables

Answer: C

Explanation:
Configuring the label of a field in a child table changes the label only on that table, not on the base table or the parent table. The base table is the table that contains the common fields for all the extended tables, and the parent table is the table that is directly extended by the child table. The label of a field on the base table or the parent table can be different from the label on the child table. References: [ServiceNow Docs - Table extension], [ServiceNow Community - How to change field label in child table] Reference: https://community.servicenow.com/community? id=community_QUESTION NO:
&sys_id=7ddc4462dbe2b3840be6a345ca9619af


NEW QUESTION # 126
Which one of the following is part of the client-side scripting API?

  • A. current and previous objects
  • B. GlideUser object (g_user)
  • C. GlideSystem object (gs)
  • D. workflow.scratchpad

Answer: B

Explanation:
https://developer.servicenow.com/dev.do#!/reference/api/rome/client


NEW QUESTION # 127
Which determines the relationships between fields in an Import Set table to fields in an existing ServiceNow table?

  • A. Data Sources
  • B. Schema Map Relationship Builder
  • C. Business Service Management Map
  • D. Transform Map

Answer: D

Explanation:
Comprehensive and Detailed In-Depth Explanation:
In ServiceNow, when importing data from external sources, the data is first loaded into an Import Set table, which acts as a staging area. To move this data into an existing ServiceNow table (known as the target table), a Transform Map is used. A Transform Map is a set of field mappings that define the relationships between fields in the Import Set table and fields in the target table. This mapping ensures that data is accurately transformed and transferred to the correct fields in the target table during the import process. Therefore, the correct answer is C. Transform Map.
The other options are not related to this specific function:
* A. Business Service Management Map: This is not a standard term used in the context of data import and transformation in ServiceNow.
* B. Data Sources: These define the origin of the data being imported but do not handle the field mapping between Import Set tables and target tables.
* D. Schema Map Relationship Builder: This tool visualizes the relationships between tables in the database schema but is not used for mapping fields during data transformation.
For more detailed information, refer to the official ServiceNow documentation on Transform Maps.


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

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

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 # 129
What syntax is used in a Record Producer script to access values from Record Producer form fields?

  • A. producer.variablename
  • B. producer.field_name
  • C. current.variable_name
  • D. current.field_name

Answer: A

Explanation:
The syntax used in a Record Producer script to access values from Record Producer form fields is producer.variable_name. A Record Producer is a type of catalog item that allows users to create records on any table from the service catalog. A Record Producer script is a server-side script that runs when a Record Producer is submitted, and can be used to set values or perform actions on the generated record. The producer object is a global object that represents the Record Producer form and its variables. The variable_name is the name of the variable defined in the Record Producer. References: [ServiceNow Docs - Record producers], [ServiceNow Docs - Record producer script]


NEW QUESTION # 130
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. All fields
  • B. filed1 and field3
  • C. All fields except field3
  • D. field3 only

Answer: C

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


NEW QUESTION # 131
Which one of the following is NOT part of the Form Designer?

  • A. Schema map
  • B. Form layout
  • C. Page header
  • D. Field navigator

Answer: A

Explanation:
https://developer.servicenow.com/dev.do#!/learn/courses/sandiego/app_store_learnv2_learnmore_sandiego_learn The Form Designer is a tool that allows you to create and customize forms on the ServiceNow platform. The Form Designer has four main components:
* Form layout: The form layout shows the preview of the form and allows you to drag and drop fields, sections, and related lists onto the form. You can also resize, reorder, and delete the elements on the form layout.
* Page header: The page header shows the name of the table and the form that you are editing. You can also access the form properties, save the form, and switch to the form view from the page header.
* Field navigator: The field navigator shows the list of available fields for the table and allows you to search, filter, and add fields to the form. You can also create new fields and edit existing fields from the field navigator.
* Schema map: The schema map is not part of the Form Designer. The schema map is a separate tool that shows the relationships between tables and fields on the platform. You can access the schema map from the System Definition > Tables module or from the context menu of a table.
References:
* [Form Designer]
* [Schema map]


NEW QUESTION # 132
What syntax is used in a Record Producer script to access values from Record Producer form fields?

  • A. producer.variablename
  • B. producer.field_name
  • C. current.variable_name
  • D. current.field_name

Answer: A

Explanation:
The syntax used in a Record Producer script to access values from Record Producer form fields is producer.variable_name. A Record Producer is a type of catalog item that allows users to create records on any table from the service catalog. A Record Producer script is a server-side script that runs when a Record Producer is submitted, and can be used to set values or perform actions on the generated record. The producer object is a global object that represents the Record Producer form and its variables. The variable_name is the name of the variable defined in the Record Producer. References: [ServiceNow Docs - Record producers],
[ServiceNow Docs - Record producer script]


NEW QUESTION # 133
On the knowledge base record, which tab would you use to define which users are able to write articles to the knowledge base?

  • A. Cannot Author
  • B. Can Contribute
  • C. Can Write
  • D. Can Read
  • E. Can Author

Answer: B


NEW QUESTION # 134
......

CAD 2025 Training With 248 QA's: https://passleader.testpassking.com/CAD-exam-testking-pass.html