Category 1
Category 2
Category 3
Category 4
Category 5
100

What type of field is commonly aggregated in Tableau?

A measure

100

What type of field is commonly used to make categorical buckets in Tableau?

A dimension
100

A scatterplot is great for showing __________

Correlation
100

 A purpose should be written as a __________

single sentence

100
What file type contains the tableau visualizations, info needed to build the visualizations, and a copy of the data source?

.twbx (Tableau Packaged Workbook)

200

Name four data types in Tableau

Number (whole)
Number (decimal)
String
Geographic
Date
Datetime
Boolean

200

What does the acronym PACK stand for? 

Purpose
Audience
Credibility
chart Kind (I'll take type too!)

200

Which of the following can you use to create a histogram?

a) 2 dimensions
b) 1 dimension
c) 2 measures
d) 1 measure

d)

200

What occurs when you place a dimension on the color marks card in Tableau?

You get distinct color options to represent your data

200

You want to show only sales data from the current year in your Tableau view. How would you apply a filter to achieve this?

  • Drag the Order Date (or relevant date field) to the Filters shelf.

  • In the filter dialog, select Years and then choose “This Year”.

  • Click OK — the view now only shows data from the current year.

300

After creating a parameter, what option(s) are typically done:
a) Rename it something like "Choose Category"
b) Create a calculated field to reference it
c) Use it on the filters shelf
d) Use it on the pages shelf

b and c

300

What is implied if a field has a green background (green pill)?

a) it is a dimension
b) it is discrete
c) it is a measure
d) it is continuous

c)

  • Blue pill = Discrete (creates headers, defines categories or groupings)

  • Green pill = Continuous (creates axes, shows data along a numeric or date range)

While it’s common for dimensions to be discrete and measures to be continuous, either can be switched — you can have a discrete measure or a continuous dimension.

300

A 100% stacked bar chart is great for showing _________

part-to-whole

300

What is implied if a field has a blue background (blue pill?)

a) it is a dimension
b) it is discrete
c) it is a measure
d) it is continuous

b)

  • Blue pill = Discrete (creates headers, defines categories or groupings)

  • Green pill = Continuous (creates axes, shows data along a numeric or date range)

While it’s common for dimensions to be discrete and measures to be continuous, either can be switched — you can have a discrete measure or a continuous dimension.

300

Name an easy way to create complex chart types in Tableau

Tableau Viz Extensions

400

Match the chart types with their purpose:
Bar chart - Slope chart - Sankey chart - Pie chart

Flow - Ranking - Part-to-whole - Magnitude

Bar - magnitude

Slope - ranking

Sankey - flow

Pie - part-to-whole

400

Explain the difference in what happens when you drag a green pill vs a blue pill into the view?

Blue = header

Green = axis

400

Write a calculated field to compute profit margin for each row of data. Explain whether it is a row-level or aggregate calculation.

[Profit] / [Sales]

Type: Row-level calculation

  • It is computed before any aggregation, meaning each record has its own profit margin.

  • If you wanted an overall profit margin for a category or the entire dataset, you would need an aggregate calculation like:

400

You have sales data for different products over time. Which chart type would best show the trends? How do you account for multiple products at once?

  • A line chart is ideal for showing trends over time because it connects data points in chronological order, making patterns easy to see.

  • When you have multiple products, you can use color or separate lines to distinguish each product while still showing how each one changes over time.

  • This allows the viewer to compare trends across products and see increases, decreases, or seasonal patterns clearly.

400

Name the 5 Characteristics of Data Quality (Credibility):


1. Accuracy
2. Completeness
3. Consistency
4. Uniqueness
5. Time-Appropriateness



500

You have a dataset showing the number of students enrolled in five different majors at your university.

  1. What chart type would best represent this data and why?

  2. How could you make sure the chart communicates clearly to a general audience (not just data professionals)?

  3. What would you check to confirm the credibility of your data source?

1. A bar chart — it clearly compares total sales by region.
2. Use simple labeling, consistent colors, and sort the bars for clarity.
3. Verify the data source, check for missing or inconsistent entries, and ensure calculations are accurate.

500

Name the 4 types of calculations in Tableau and briefly explain how they differ from each other

1. Row Level - Performed on each individual row of data before aggregation. 

2. Aggregate - Performed after data has been aggregated (summed, averaged, etc.).

3. Table - Calculated after the data is in the view, based on the visible table structure. 

4. Level of Detail - Allows calculations at a different level of detail than the view. 

500

Explain the differences between a live connection and an extract connection. List two pros and one con of each.

A live connection directly connects Tableau to the data source in real time. An extract connection takes a snapshot of the data and stores it locally in Tableau’s optimized .hyper format.

Live:

Pros:

  1. Always shows up-to-date data without needing to refresh.

  2. Can handle very large datasets since the data stays in the source system.

Con:

  • Performance depends on the database and network speed — dashboards can be slow if queries or connections lag.


Extract:

Pros:

  1. Faster performance because data is stored locally and queries run on the extract.

  2. Can be used offline and doesn’t rely on a live data source.

Con:

  • Data can become outdated unless the extract is refreshed regularly.


500

By default, measures placed in a view are aggregated. What type of aggregation is applied?

It depends on the context of the view (but usually is sum())

500

Given a parameter [Metric Selector] with options “Sales,” “Profit,” and “Quantity,” write a calculated field that changes the measure shown depending on the parameter’s selection.

CASE [Metric Selector]

WHEN "Sales" THEN SUM([Sales])

WHEN "Profit" THEN SUM([Profit])

WHEN "Quantity" THEN SUM([Quantity])

END

M
e
n
u