0
0
Tableaubi_tool~20 mins

Tableau vs Power BI comparison - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
BI Master: Tableau vs Power BI
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Key Difference in Data Connectivity

Which statement best describes a key difference in how Tableau and Power BI connect to data sources?

ATableau primarily uses live connections and requires manual refresh for extracts, while Power BI uses scheduled refreshes for both live and imported data.
BPower BI requires manual refresh of data extracts, while Tableau automatically refreshes all data sources.
CTableau cannot connect to cloud data sources, but Power BI can connect to both cloud and on-premises sources.
DPower BI only supports live connections, whereas Tableau only supports imported data extracts.
Attempts:
2 left
💡 Hint

Think about how each tool handles live data versus imported data.

visualization
intermediate
2:00remaining
Choosing the Best Visualization Tool for Interactive Dashboards

You want to create highly interactive dashboards with custom visualizations and advanced analytics. Which tool is generally better suited for this purpose?

APower BI, because it has more built-in AI visuals and integrates deeply with Microsoft services.
BTableau, because it offers more flexibility in custom visualizations and advanced analytics features.
CPower BI, because it supports more data sources than Tableau.
DTableau, because it is free and open source.
Attempts:
2 left
💡 Hint

Consider which tool is known for flexibility and advanced visual options.

dax_lod_result
advanced
2:00remaining
DAX Measure Calculation in Power BI

Given a sales table with columns: Product, Region, and SalesAmount, what is the result of this DAX measure?

Sales by Region = CALCULATE(SUM(Sales[SalesAmount]), ALLEXCEPT(Sales, Sales[Region]))

If the sales data is:

  • Product A, Region East, 100
  • Product B, Region East, 150
  • Product A, Region West, 200

What is the value of Sales by Region for Product A in Region East?

A450
B100
C150
D250
Attempts:
2 left
💡 Hint

ALLEXCEPT removes filters except for Region, so sum sales for all products in the same region.

data_modeling
advanced
2:00remaining
Handling Many-to-Many Relationships

In Power BI, you have two tables: Customers and Products. Customers can buy multiple products, and products can be bought by multiple customers. What is the best way to model this many-to-many relationship?

ACreate a bridge table (fact table) that contains CustomerID and ProductID to link the two tables.
BCreate a direct one-to-one relationship between Customers and Products tables.
CMerge Customers and Products tables into one table to avoid relationships.
DUse a calculated column in Customers to list all products bought.
Attempts:
2 left
💡 Hint

Think about how to represent many-to-many relationships in relational models.

🎯 Scenario
expert
2:00remaining
Optimizing Dashboard Performance with Large Data

You have a Power BI dashboard connected to a large dataset with millions of rows. Users report slow loading times. Which approach will most effectively improve performance?

AAdd more visuals to the dashboard to distribute the load evenly.
BDisable all filters and slicers to speed up rendering.
CImport data and create aggregated tables to reduce the amount of data processed in visuals.
DUse DirectQuery mode to query data live without importing, reducing memory usage.
Attempts:
2 left
💡 Hint

Think about reducing data volume processed by visuals.