Text preview & study summary
ServiceNow CIS-ITSM - IT Service Management Implementation - Incident Problem Change CMDB SLA Catalog
A free sample of 5 questions from this quiz, shown in full with answer choices and explanations. No interactivity — everything is visible on this page for study and review.
Want to test your knowledge? Launch the Interactive Exam Simulator
Question 1
A company wants to implement a major incident process where P1 incidents automatically notify senior management and create a dedicated communication bridge. Which ServiceNow ITSM features should be configured?
Explanation
ServiceNow's Major Incident Management process (part of ITSM Pro) includes dedicated features: (1) Major Incident criteria that auto-promotes incidents to Major Incident status based on conditions; (2) Automatic creation of a communication plan with predefined stakeholder groups; (3) Major Incident workbench for coordinating response; (4) Automated notification workflows to executives and senior management; (5) Audit trail of all response activities. Simple business rule emails (option A) lack the structured coordination features. SLAs measure timelines but don't coordinate response. Emergency Change Management may be linked but isn't the primary tool for incident response coordination.
Question 2
A ServiceNow ITSM implementation needs to support a "Virtual Agent" chatbot that can help users create incidents and check the status of their requests. What configuration is required?
Explanation
ServiceNow Virtual Agent is a native platform capability (part of Now Intelligence). Configuration includes: (1) Virtual Agent Designer — create conversation Topics (intents like "Create Incident" or "Check Request Status") using NLU (Natural Language Understanding); (2) Conversation flow nodes — capture user information through dialogue; (3) Fulfillment — connect to FlowAPI, GlideRecord, or ServiceNow Spoke actions to create/query records; (4) Integration channels — deploy on Teams, Slack, web, mobile. No third-party development is needed. The Virtual Agent integrates natively with ITSM workflows and provides 24/7 self-service. Third-party chatbots (option A) require significant integration effort.
Question 3
A company is implementing the Service Portal and wants the incident creation form to automatically populate the "Affected User" field with the logged-in user's information. What is the MOST appropriate way to implement this?
Explanation
Setting a Default Value on the `caller_id` (Affected User) field in the Incident table definition is the cleanest approach. In the field's Default Value, you enter `javascript:gs.getUserID()` — this server-side script runs when a new incident record is created and automatically sets the caller to the current user's sys_id. This works across all entry points: the main UI, Service Portal, mobile app, and API calls when session context is available. A Client Script (option C) would only work in the browser UI and would need to handle the g_user object. Default values are the standard platform mechanism for auto-populating fields with user context.
Question 4
A company has implemented Knowledge Management and wants to measure the effectiveness of their knowledge base. The Knowledge Manager asks: "How many incidents were resolved using a knowledge article, and which articles are used most?" How can this be reported in ServiceNow?
Explanation
ServiceNow tracks knowledge usage through relationship records. When an agent links a KB article to an incident (via "Knowledge" related list or the Knowledge Search widget), a many-to-many relationship record is created. The `kb_knowledge_task_mtom` table tracks these links. ServiceNow also tracks article views and ratings in `kb_use` and `kb_feedback` tables. You can create reports showing: (1) Number of incidents per article (most-used articles); (2) Incidents resolved after KB article was linked (deflection rate); (3) Article usefulness ratings. The ServiceNow Knowledge Analytics dashboard provides these metrics natively. Manual work notes analysis (option C) is not scalable or reliable.
Question 5
During an ITSM implementation, the client asks whether ServiceNow supports integration with monitoring tools like Nagios or Dynatrace to automatically create incidents when alerts fire. What is the recommended integration pattern?
Explanation
ServiceNow IT Operations Management (ITOM) Event Management is designed for this integration pattern: (1) Monitoring tools (Nagios, Dynatrace, Zabbix, PagerDuty) send events to ServiceNow via REST, SNMP, or native connectors; (2) Event Management deduplicates and correlates events (preventing alert storms from creating thousands of incidents); (3) Alert rules convert significant events into Alerts; (4) Alert Action policies automatically create, update, or resolve incidents based on alert conditions; (5) CMDB CI lookup adds CI context to incidents. This reduces false-positive incidents, correlates related alerts, and provides CI-enriched context. Email-based integration (option A) lacks structured data and deduplication. Manual creation (option C) introduces lag and human error.
