What section on the notes tab, shows the history of the work documented on the record?
Answer : B
In ServiceNow, the Activity section on the Notes tab provides a detailed history of all work documented on a record. It logs: Updates & Field Changes (who changed what and when) Comments & Work Notes Approval History Assignment Changes
The Activity Stream is essential for tracking progress, ensuring transparency, and auditing record updates.
Why Are Other Options Incorrect?
A . Journal
ServiceNow does not have a specific 'Journal' tab for history tracking. However, journal fields (like work notes and comments) are logged in the Activity section.
C . Diary
No such section called 'Diary' exists in ServiceNow for tracking record history.
D . Audit Log
The Audit Log tracks field-level changes in a separate system log but is not displayed in the Notes tab. It requires admin-level access to view detailed changes.
E . Timeline
'Timeline' is not a default section under the Notes tab. It is sometimes used in custom applications, but the correct answer is 'Activity.'
ServiceNow CSA Documentation -- Activity Stream & Record History
ServiceNow Product Documentation -- Tracking Record Updates via Activity (https://docs.servicenow.com)
Data Policy can enforce mandatory data on import.
Answer : A
A Data Policy in ServiceNow is used to enforce mandatory and read-only field conditions for data that is entered manually through forms or imported into the system.
How Data Policies Enforce Mandatory Data on Import:
Data Policies apply to data coming from external sources, such as imports, web services (API), and integrations.
If a field is set as mandatory in a Data Policy, records cannot be imported unless that field contains a value.
This ensures data integrity by preventing incomplete or invalid data from entering the system.
Example Scenario:
If an administrator configures a Data Policy to make the 'Caller' field mandatory on the Incident table, any imported incidents without a Caller value will be rejected.
Why 'True' is the Correct Answer:
Data Policies enforce mandatory fields for both UI entry and imports.
Why 'False' is Incorrect:
If Data Policies did not enforce mandatory fields on imports, incomplete records could enter the system, leading to data integrity issues.
Reference from CSA Documentation:
ServiceNow Documentation: Data Policies
CSA Exam Guide: Covers Data Policy enforcement for UI forms and imports.
Thus, the correct answer is: A. True
Which ServiceNow capability allows you to provide knowledge articles, via a conversational messaging interface?
Answer : B
The Virtual Agent in ServiceNow provides a conversational messaging interface that allows users to interact with the system via chatbots. One of its key capabilities is delivering knowledge articles in response to user queries, enhancing self-service support.
Why Virtual Agent?
Virtual Agent uses Natural Language Understanding (NLU) to understand user questions and deliver knowledge articles as part of its automated responses.
It can interact through ServiceNow's messaging interfaces like Microsoft Teams, Slack, and Service Portal chat.
Virtual Agent integrates with the Knowledge Management system, providing users with relevant knowledge articles based on their inquiries.
Incorrect Options Explained:
A . Agent Assist -- This feature helps support agents by recommending knowledge articles inside agent workspaces but is not a conversational interface for end-users.
C . Now Messenger -- This does not exist as a ServiceNow product or feature.
D . Connect Agent -- There is no specific feature called 'Connect Agent' in ServiceNow. Connect Chat is a real-time messaging tool but does not provide automatic knowledge articles.
Reference:
Virtual Agent Overview -- ServiceNow Docs
Virtual Agent and Knowledge Integration
What enables you to trace the connection from an infrastructure item, like a Server, to the Services that are dependent on that Server?
Answer : A
In the ServiceNow Configuration Management Database (CMDB), the mechanism that enables the tracing of connections between different Configuration Items (CIs) is Relationships.
1. The Role of Relationships in CMDB:
The CMDB is not just a flat list of assets; its true power lies in its ability to map how different components interact. A Relationship defines the dependency or connection between two CIs. For example, a 'Web Server' CI might run on a 'Linux Server' CI, and an 'Email Service' might depend on that 'Web Server.'
2. The cmdb_rel_ci Table:
Technically, these connections are stored in a specific table called the CI Relationship table (cmdb_rel_ci). This table acts as a bridge, storing three key pieces of information for every connection:
Parent: The upstream item (e.g., the Service or Application).
Child: The downstream item (e.g., the Server or Database).
Type: The nature of the connection (e.g., 'Runs on,' 'Depends on,' 'Hosted on,' 'Members of').
3. Dependency Views:
While the Relationship is the underlying data enabler, ServiceNow visualizes these relationships using Dependency Views (formerly known as Business Service Management or BSM maps). Dependency Views use the relationship data to graphically display the infrastructure. By looking at a Dependency View for a Server, you can trace the lines (relationships) upward to see exactly which Business Services will be impacted if that Server goes down.
4. Why the other options are incorrect:
Transform Map: This is a component of the Import Set process. It is used to map source data (from a spreadsheet or XML) to target fields in a ServiceNow table during data import. It does not define infrastructure dependencies.
Automapping Utility: This is not a standard ServiceNow architectural term. While ServiceNow has a 'Service Mapping' product that automates the discovery of relationships, 'Automapping Utility' is not the specific feature name, nor is it the fundamental element that enables tracing.
Service Tracer: This is a fictitious term and does not exist in the ServiceNow platform.
Which field (or fields) is used as a unique key during imports?
Answer : B
Understanding Data Imports in ServiceNow:
When importing data into ServiceNow, you need to determine how incoming data matches existing records to avoid duplication.
Coalescing fields are used to identify whether an incoming record already exists in the target table.
Why 'Coalesce Fields' is the Correct Answer:
Coalescing means using specific fields as unique identifiers to determine if a record should be updated or inserted as a new record.
If a match is found based on the coalesce field, ServiceNow updates the existing record.
If no match is found, a new record is inserted.
Why Other Answers Are Incorrect:
A . Match Fields Not an official ServiceNow term related to import sets. Matching is done through coalescing, but 'Match Fields' is not the correct terminology.
C . Key Fields This is a general database term, but in ServiceNow, 'Coalesce Fields' is the term used for identifying unique keys during imports.
D . Sys IDs The Sys ID is a unique identifier for each record in ServiceNow, but it is not used for coalescing unless explicitly set as the coalesce field.
Best Practice Solution:
Set a single or multiple fields as coalesce fields in the Transform Map to ensure proper data deduplication.
Navigate to System Import Sets Transform Maps, select the relevant transform map, and mark the coalescing fields.
ServiceNow Docs: Coalescing Fields in Data Imports
ServiceNow CSA Documentation on Data Imports & Transform Maps
Which objects can be used in Inbound Action scripts?
Answer : D
Which components are the responsibility according to the Shared Responsibility Model?
Choose 2 answers
Answer : B, D
The Shared Responsibility Model in ServiceNow clearly delineates responsibilities between the cloud service provider (ServiceNow) and the customer. ServiceNow manages the infrastructure, including the physical data centers, networking, hardware, and media disposal and destruction, ensuring proper security of the underlying platform. Hence, Media disposal and destruction and Infrastructure management fall under the provider's responsibility.
The customer is responsible for their data, including backup and restore, access management (authentication and authorization), and encryption configuration on their data. While ServiceNow provides encryption capabilities, the customer must configure and manage encryption keys and access controls.
This model is critical for maintaining security and compliance in cloud environments and is explicitly detailed in ServiceNow's official documentation and cloud security best practices.
ServiceNow Trust and Security Documentation, Shared Responsibility Model section
ServiceNow System Administrator Study Guide, Cloud Security Chapter
ServiceNow Docs: Shared Responsibility Model