0
0
Power BIbi_tool~20 mins

DirectQuery vs Import mode in Power BI - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
DirectQuery vs Import Mode Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Difference in Data Refresh Frequency

Which statement correctly describes the data refresh behavior when using DirectQuery mode compared to Import mode in Power BI?

ABoth DirectQuery and Import mode query the data source live on each interaction.
BDirectQuery mode queries the data source live on each interaction, while Import mode requires scheduled or manual refresh to update data.
CBoth DirectQuery and Import mode require manual refresh to update data.
DImport mode queries the data source live on each interaction, while DirectQuery requires scheduled or manual refresh to update data.
Attempts:
2 left
💡 Hint

Think about how data is accessed in real-time versus stored locally.

🎯 Scenario
intermediate
2:00remaining
Choosing Mode for Large Dataset

You have a very large dataset that cannot fit into Power BI's memory. You want to build reports that always show the latest data without waiting for scheduled refreshes. Which mode should you choose?

ADirectQuery mode, because it queries the data source live and handles large datasets without loading all data into memory.
BImport mode, because it loads data into memory for faster queries.
CNeither mode can handle large datasets efficiently.
DUse Import mode with incremental refresh to handle large datasets.
Attempts:
2 left
💡 Hint

Consider how each mode handles data size and freshness.

dax_lod_result
advanced
2:30remaining
DAX Query Behavior in DirectQuery Mode

Consider a Power BI report using DirectQuery mode connected to a SQL database. You create this DAX measure:

Sales Amount = SUM(Sales[Amount])

What happens when you interact with a slicer filtering by Product Category?

APower BI caches all data on first load and does not query the database again.
BPower BI loads all Sales data into memory and applies the filter locally.
CPower BI ignores the slicer filter and returns total sales for all categories.
DPower BI sends a SQL query to the database with a WHERE clause filtering by the selected Product Category, returning only relevant data.
Attempts:
2 left
💡 Hint

Think about how DirectQuery mode handles filtering and queries.

🔧 Formula Fix
advanced
2:30remaining
Performance Issue in DirectQuery Mode

A report using DirectQuery mode is very slow when filtering on a date column. Which of the following is the most likely cause?

AThe report uses Import mode, which is slower than DirectQuery.
BPower BI caches too much data locally, causing memory overflow.
CThe date column is not indexed in the source database, causing slow query performance.
DThe data model has too many calculated columns in Power BI.
Attempts:
2 left
💡 Hint

Think about what affects query speed in the source database.

visualization
expert
3:00remaining
Visualizing Data Freshness Differences

You want to create a dashboard that clearly shows users the difference in data freshness between Import mode and DirectQuery mode. Which visualization approach best communicates this difference?

AUse a gauge visual showing last refresh time for Import mode and a live clock for DirectQuery mode.
BUse a pie chart showing percentage of data loaded in memory.
CUse a bar chart comparing total sales for both modes without timestamps.
DUse a table listing all data rows from both modes side by side.
Attempts:
2 left
💡 Hint

Think about how to show data freshness clearly and simply.