Which of the following is the main advantage of using a star schema in a Power BI data model?
Think about how organizing data affects query speed and simplicity.
A star schema organizes data with a central fact table and related dimension tables, which makes queries simpler and faster. Other options either reduce performance or complicate the model.
Given a Sales table with columns Region and SalesAmount, which DAX measure correctly calculates total sales only for the 'West' region?
Remember that CALCULATE needs a filter expression or a filter table.
Option A uses CALCULATE with FILTER to apply a row context filter correctly. Option A is invalid syntax because filters inside CALCULATE must be filter expressions or tables. Option A works but is less efficient. Option A is invalid DAX syntax.
You want to show how sales change month by month for the last year. Which visualization type is best suited for this purpose in Power BI?
Think about which chart type best shows changes over time.
A line chart is ideal for showing trends over time because it clearly displays continuous data points along a timeline. Other options do not effectively show trends.
You created a relationship between a Customers table and an Orders table in Power BI. The relationship is set as one-to-one, but you notice incorrect aggregation results. What is the most likely cause?
Think about how customers and orders relate in real life.
Typically, one customer can have many orders, so the relationship should be one-to-many. Setting it as one-to-one causes incorrect aggregations because it limits the data model's understanding of the data structure.
Your Power BI report is slow because the data model has millions of rows and many calculated columns. Which approach will best improve performance without losing necessary detail?
Think about how calculated columns and measures affect model size and query speed.
Measures are calculated on the fly and do not increase model size, unlike calculated columns. Using aggregations reduces data volume. Adding calculated columns or disabling relationships can harm performance or data integrity.