Practice vocabulary for describing interactive data visualization features including tooltips, drill-downs, filters, and responsive dashboards.
0 / 18 completed
1 / 18
A small pop-up that appears when a user hovers over a data point and shows additional details is called a _____.
A tooltip on hover is a core interactive element that displays contextual data without cluttering the main chart view.
2 / 18
The interaction pattern where clicking a summary chart opens a more detailed view is called a _____.
Drill-down allows users to navigate from a high-level summary to progressively more detailed data layers.
3 / 18
'Brushing and linking' in a dashboard means that _____.
Brushing and linking is a coordinated-view technique where a selection (brush) in one view automatically highlights related data across all linked views.
4 / 18
When a sidebar control lets users narrow which data is shown across all charts on a page, that control is called a _____.
A filter panel allows users to interactively subset the data, and when wired correctly it updates all charts on the dashboard simultaneously.
5 / 18
A dashboard described as 'responsive to mobile' means it _____.
A responsive dashboard uses flexible layouts (CSS grid, media queries) so that charts reflow and resize gracefully on mobile devices.
6 / 18
git checkout -b feature/interactive-viz
During code review, Sarah comments on Mark's PR description: 'This is great, but the comment about the drill-down chart interaction could be clearer. We need to explicitly state that clicking the data point will update all related charts in real-time.' What does 'drill-down' most accurately describe in this context?
'Drill-down' refers to a specific interaction pattern in interactive visualizations where exploring a lower level of granularity automatically updates related charts. The key here is that clicking a point doesn't *just* show more detail; it triggers an update across the entire visualization set. Mark's comment highlights this real-time connection, correcting the likely misconception that 'drill-down' simply means providing more information – it's about dynamically linked updates.
7 / 18
Slack message from David: 'Hey team, just updated the PR description for the new dashboard. Added a note about the 'zoom' feature – users can now click on individual data points to see more detailed information. Let me know if you have any questions!'Which of the following best describes the 'zoom' feature David mentioned?
'Zoom' in interactive visualizations refers to the capability to expand or drill down into specific data points. This is not about reducing chart size (option A), nor is it primarily about filtering (option B). Instead, 'zoom' describes the behavior of revealing more detailed information associated with a selected element – essentially, focusing on a particular area of interest within the visualization. Think of it like magnifying glass effect.
8 / 18
git checkout -b feature/interactive-viz
During code review, Sarah comments on Mark's PR description: 'This is great, but the comment about the drill-down chart interaction could be clearer. We need to explicitly state that clicking the data point will update all related charts in real-time.' What does 'drill-down' most accurately describe in this context?
'Drill-down' refers to a specific interaction pattern in interactive visualizations where exploring a lower level of granularity automatically updates related charts. The key here is that clicking a point doesn't *just* show more detail; it triggers an update across the entire visualization set. Mark's comment highlights this real-time connection, correcting the likely misconception that 'drill-down' simply means providing more information – it's about dynamically linked updates.
9 / 18
Slack message from David: 'Hey team, just updated the PR description for the new dashboard. Added a note about the 'zoom' feature – users can now click on individual data points to see more detailed information. Let me know if you have any questions!'Which of the following best describes the 'zoom' feature David mentioned?
'Zoom' in interactive visualizations refers to the capability to expand or drill down into specific data points. This is not about reducing chart size (option A), nor is it primarily about filtering (option B). Instead, 'zoom' describes the behavior of revealing more detailed information associated with a selected element – essentially, focusing on a particular area of interest within the visualization. Think of it like magnifying glass effect.
10 / 18
git checkout -b feature/interactive-viz
During code review, Sarah comments on Mark's PR description: 'This is great, but the comment about the drill-down chart interaction could be clearer. We need to explicitly state that clicking the data point will update all related charts in real-time.' What does 'drill-down' most accurately describe in this context?
'Drill-down' refers to a specific interaction pattern in interactive visualizations where exploring a lower level of granularity automatically updates related charts. The key here is that clicking a point doesn't *just* show more detail; it triggers an update across the entire visualization set. Mark's comment highlights this real-time connection, correcting the likely misconception that 'drill-down' simply means providing more information – it's about dynamically linked updates.
11 / 18
Slack message from David: 'Hey team, just updated the PR description for the new dashboard. Added a note about the 'zoom' feature – users can now click on individual data points to see more detailed information. Let me know if you have any questions!'Which of the following best describes the 'zoom' feature David mentioned?
'Zoom' in interactive visualizations refers to the capability to expand or drill down into specific data points. This is not about reducing chart size (option A), nor is it primarily about filtering (option B). Instead, 'zoom' describes the behavior of revealing more detailed information associated with a selected element – essentially, focusing on a particular area of interest within the visualization. Think of it like magnifying glass effect.
12 / 18
git checkout -b feature/interactive-viz
During code review, Sarah comments on Mark's PR description: 'This is great, but the comment about the drill-down chart interaction could be clearer. We need to explicitly state that clicking the data point will update all related charts in real-time.' What does 'drill-down' most accurately describe in this context?
'Drill-down' refers to a specific interaction pattern in interactive visualizations where exploring a lower level of granularity automatically updates related charts. The key here is that clicking a point doesn't *just* show more detail; it triggers an update across the entire visualization set. Mark's comment highlights this real-time connection, correcting the likely misconception that 'drill-down' simply means providing more information – it's about dynamically linked updates.
13 / 18
Slack message from David: 'Hey team, just updated the PR description for the new dashboard. Added a note about the 'zoom' feature – users can now click on individual data points to see more detailed information. Let me know if you have any questions!'Which of the following best describes the 'zoom' feature David mentioned?
'Zoom' in interactive visualizations refers to the capability to expand or drill down into specific data points. This is not about reducing chart size (option A), nor is it primarily about filtering (option B). Instead, 'zoom' describes the behavior of revealing more detailed information associated with a selected element – essentially, focusing on a particular area of interest within the visualization. Think of it like magnifying glass effect.
14 / 18
During a standup meeting, Alex is discussing the new interactive dashboard. He explains that users can 'drill down' into specific data points to see more granular information. Which of the following best describes this interaction pattern? Consider how developers typically communicate technical concepts in team meetings
'Drill down' refers to navigating progressively more detailed views within a dataset. This is distinct from filtering (A), which applies a single criterion across the whole data set. While related to querying (C) and automated reporting (D), 'drill down' specifically describes the interactive exploration of hierarchical data relationships, crucial for understanding trends and outliers.
15 / 18
You're reviewing a PR that implements a new visualization component. The developer has added tooltips to data points on the chart. What term best describes this feature? This scenario tests understanding of common UI enhancements
Tooltips are small pop-up windows that display additional information when a user hovers over an element in a UI. This is distinct from data masking (A), dynamic rendering (B), and server-side filtering (D). Tooltiping directly addresses the need to provide context and enhance understanding of visual data.
16 / 18
In a Slack message discussing dashboard design, Emily writes: 'We're using 'linked brushing' to allow users to highlight areas on the chart and see related data in other visualizations. This helps them quickly identify correlations.' What does 'linked brushing' primarily achieve? This tests understanding of a key interactive visualization technique
'Linked brushing' describes a powerful interaction where selections made on one visualization trigger updates in connected visualizations. This is distinct from simply scaling charts (B) or generating summaries (A). The core purpose is to facilitate dynamic data exploration by revealing relationships across multiple views.
17 / 18
Mark is preparing a PR description for a new dashboard feature. He writes: 'The chart supports 'zoom' functionality, allowing users to magnify specific areas for detailed inspection.' What does the term 'zoom' refer to in this context? This assesses understanding of common interactive controls
'Zoom' in this context refers to adjusting the level of detail displayed within a visualization. This is achieved through techniques like scaling or cropping the view, allowing users to focus on smaller areas. It's different from changing color schemes (A), filtering data (C) or exporting the chart (D).
18 / 18
During a code review, David comments on Sarah's PR: 'The dashboard is responsive to mobile. Users should be able to view and interact with the visualizations comfortably on smaller screens.' What does 'responsive design' primarily mean in this scenario? This tests understanding of UI responsiveness
'Responsive design' is about creating interfaces that automatically adjust their layout and content based on the device being used. This means the dashboard adapts to smaller screens without losing functionality or usability – unlike a fixed layout (A) or prioritizing bandwidth (D).
What does the "Interactive Visualization Vocabulary" exercise practise?
Practice vocabulary for describing interactive data visualization features including tooltips, drill-downs, filters, and responsive dashboards.
How many questions are in this exercise?
This exercise has 18 questions, each multiple-choice with a full explanation shown after you answer.
What English level is this exercise for?
This exercise is tagged Intermediate. If the vocabulary feels difficult, browse the Data Visualization category page for an easier module to start with.
Is this exercise free to use?
Yes. Every exercise on CoderSlingo, including this one, is free with no account, sign-up, or paywall.
Do I get feedback if I answer incorrectly?
Yes — whichever option you choose, right or wrong, you'll immediately see an explanation clarifying the correct term and why the other options don't fit.
Can I retry this exercise?
Yes — once you finish all the questions, a "Try again" button on the results screen resets the exercise so you can practise as many times as you like.
Do I need an account to track my progress?
No account is required. Your progress bar and score for this session are tracked in the browser as you go, but nothing is saved once you leave the page.
Is "Interactive Visualization Vocabulary" part of a larger series?
Yes — it's one exercise in the Data Visualization category on CoderSlingo. See the category page for the full list of related exercises on similar terminology.
Can I link directly to this exercise?
Yes — this exercise has its own permanent URL, so you can bookmark it or share the link directly with a colleague or study partner.
Where can I find more exercises like this one?
See the Data Visualization category page for related exercises, or browse the main Exercises hub for other IT English topics.