Certified Implementation Specialist - Platform Analytics Questions and Answers
Question 5
Which type of Indicator allows enablingShow real-time score?
Options:
A.
Scripted Automated Indicator
B.
Manual Indicator
C.
Formula Indicator
D.
Non-scripted Automated Indicator
Answer:
D
Explanation:
TheShow real-time scoreoption is available only fornon-scripted Automated Indicators. These indicators are based on standard indicator sources and conditions that can be safely recalculated on demand without scripting complexity.
Scripted automated indicators and formula indicators depend on stored historical values and custom logic, which cannot be reliably recalculated in real time. Manual indicators rely on user-entered values and also do not support real-time calculation. ServiceNow documentation explicitly limits real-time scoring to non-scripted automated indicators to preserve performance and data integrity. Therefore, option D is the correct answer.
Question 6
What determines thecolor of the scorein aScore widget?
Options:
A.
Relationship to the target and the Direction setting of the Indicator
B.
Chart color defined for the base table
C.
Field styles on the field used to calculate the Indicator
D.
Widget settings
Answer:
A
Explanation:
In ServiceNow Platform Analytics, thecolor of the score displayed in a Score widgetis determined by theIndicator’s relationship to its targetin combination with theDirection setting(Maximize or Minimize) of the Indicator. This behavior is part of the KPI evaluation logic and is consistent across dashboards and KPI Details.
When an indicator has a defined target, Platform Analytics compares thecurrent scoreagainst that target. Based on whether the indicator is configured tomaximize(higher is better) orminimize(lower is better), the platform automatically assigns a visual status—such as green (on track), yellow (warning), or red (off track). This status directly controls thecolor of the score valueshown in the widget.
Chart colors, field styles, or widget-specific settings donotinfluence the score color. Those options may affect line charts or visual styling, but not KPI status coloring. ServiceNow documentation clearly states that KPI status and score coloring are driven bytarget evaluation logic, makingoption Athe correct and verified answer.
Question 7
Where areNext Experience DashboardsandData Visualizationscreated?
Options:
A.
In Reports Administration
B.
In Analytics Administration
C.
In the Analytics Hub
D.
In the Analytics Center
Answer:
D
Explanation:
Analytics Centeris the workspace used to create and manageNext Experience DashboardsandData Visualizations. It provides a unified interface for building modern, interactive analytics experiences, including metric visualizations, time series, breakdown views, and dashboards.
Analytics Hub is primarily used forviewing and exploring existing analytics, not creating them. Reports Administration and Analytics Administration serve different purposes and do not support Next Experience dashboard creation. ServiceNow documentation explicitly identifies Analytics Center as the creation and management environment for Next Experience analytics content, making option D the correct answer.
Question 8
Which scenario requires ascripted Breakdown Mapping?
Options:
A.
There is no direct mapping between the Indicator field and the Breakdown table
B.
The field to map to is of type Sys ID
C.
The table being mapped is a database view and not an actual table
D.
The value needed for the Breakdown is available only as a dot-walked field
Answer:
A
Explanation:
Ascripted Breakdown Mappingis required when there isno direct field relationshipbetween the Indicator source data and the Breakdown source table. In such cases, standard field mapping cannot resolve how indicator records should be categorized, so a script is needed to programmatically determine the correct breakdown value.
Mapping to a Sys ID field (option B) is supported through standard mappings. Database views (option C) can still be mapped if fields are accessible. Dot-walked fields (option D) are commonly supported without scripting. According to ServiceNow Platform Analytics documentation, scripted mappings are specifically intended forcomplex or indirect relationships, making option A the correct answer.