
300-T2-26-63

Quiz
•
Business
•
Professional Development
•
Hard

Al B
Used 3+ times
FREE Resource
37 questions
Show all answers
1.
MULTIPLE SELECT QUESTION
1 min • 1 pt
You have the tables shown in the following table.The Impressions table contains approximately 30 million records per month.You need to create an ad analytics system to meet the following requirements:✑ Present ad impression counts for the day, campaign, and site_name. The analytics for the last year are required.Minimize the data model size.Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
Create one-to-many relationships between the tables.
Group the Impressions query in Power Query by Ad_id, Site_name, and Impression_date. Aggregate by using the CountRows function.
Create a calculated table that contains Ad_id, Site_name, and Impression_date.
Create a calculated measure that aggregates by using the COUNTROWS function.
Answer explanation
Incorrect:Not C: A calculated table would increase the data model size.Not D: Need Impression_date etc.
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
You are creating a Microsoft Power BI data model that has the tables shown in the following table.The Products table is related to the ProductCategory table through the ProductCategoryID column. Each product has one product category.You need to ensure that you can analyze sales by product category.How should you configure the relationship from ProductCategory to Products? To answer, select the appropriate options in the answer area.NOTE: Each correct selection is worth one point.
Cardinality: One-to-many
Cross-filter direction: Single
Cardinality: One-to-one
Cross-filter direction: Single
Cardinality: One-to-one
Cross-filter direction: Both
Cardinality: One-to-many
Cross-filter direction: Both
Answer explanation
Box 1: One-to-many -The one-to-many and many-to-one cardinality options are essentially the same, and they're also the most common cardinality types.Incorrect: A many-to-many relationship means both columns can contain duplicate values. This cardinality type is infrequently used. It's typically useful when designing complex model requirements. You can use it to relate many-to-many facts or to relate higher grain facts. For example, when sales target facts are stored at product category level and the product dimension table is stored at product level.Box 2: Single -Incorrect:Bear in mind that bi-directional relationships can impact negatively on performance. Further, attempting to configure a bi-directional relationship could result in ambiguous filter propagation paths. In this case, Power BI Desktop may fail to commit the relationship change and will alert you with an error message.Reference:https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-relationships-understand
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
You import a Power BI dataset that contains the following tables:✑ Date✑ Product✑ Product InventoryThe Product Inventory table contains 25 million rows. A sample of the data is shown in the following table.The Product Inventory table relates to the Date table by using the DateKey column. The Product Inventory table relates to the Product table by using theProductKey column.You need to reduce the size of the data model without losing information.What should you do?
Change Summarization for DateKey to Don't Summarize.
Remove the relationship between Date and Product Inventory
Change the data type of UnitCost to Integer.
Remove MovementDate.
Answer explanation
The DateKey and MovementDate columns have the same information. Movementdate can be removed.Incorrect:Not C: Integer data type would lose data.
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
You are enhancing a Power BI model that has DAX calculations.You need to create a measure that returns the year-to-date total sales from the same date of the previous calendar year.Which DAX functions should you use? To answer, select the appropriate options in the answer area.NOTE: Each correct selection is worth one point.
Sales PYTD =
VAR startyear =
STARTOFYEAR (PREVIOUSYEAR ( 'Calendar'[Date]) )
VAR enddate =
LASTDATE( Sales[Date]) - 365
RETURN
CALCULATE( SUM (Sales[Sales]), SAMEPERIODLASTYEAR('Calendar'[Date],startyear, enddate))
Sales PYTD =
VAR startyear =
STARTOFYEAR (PREVIOUSYEAR ( 'Calendar'[Date]) )
VAR enddate =
LASTDATE( Sales[Date]) - 365
RETURN
CALCULATE( SUM (Sales[Sales]), DATESBETWEEEN('Calendar'[Date],startyear, enddate))
Sales PYTD =
VAR startyear =
STARTOFYEAR (PREVIOUSYEAR ( 'Calendar'[Date]) )
VAR enddate =
LASTDATE( Sales[Date]) - 365
RETURN
SUM( CALCULATE (Sales[Sales]), DATESBETWEEEN('Calendar'[Date],startyear, enddate))
Sales PYTD =
VAR startyear =
STARTOFYEAR (PREVIOUSYEAR ( 'Calendar'[Date]) )
VAR enddate =
LASTDATE( Sales[Date]) - 365
RETURN
SUM( CALCULATE (Sales[Sales]), SAMEPERIODLASTYEAR('Calendar'[Date],startyear, enddate))
Answer explanation
SAMEPERIODLASTYEAR expects only one parameter. Since in between dates were provided, then it is logical that the answer is DATESBETWEEN.
Sales PYTD =
VAR startyear =
STARTOFYEAR (PREVIOUSYEAR ( 'Date'[Date]) )
VAR enddate =
LASTDATE( SalesOrder[OrderDate]) - 365
RETURN
CALCULATE( SUM (SalesOrder[Amount]), DATESBETWEEN('Date'[Date],startyear, enddate))
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are modeling data by using Microsoft Power BI. Part of the data model is a large Microsoft SQL Server table named Order that has more than 100 million records. During the development process, you need to import a sample of the data from the Order table. Solution: You add a report-level filter that filters based on the order date. Does this meet the goal?
Yes
No
Answer explanation
You want the raw data, not a report with the data.Instead add a WHERE clause to the SQL statement.Reference:https://docs.microsoft.com/en-us/power-query/native-database-query
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a Power BI report that imports a date table and a sales table from an Azure SQL database data source.
The sales table has the following date foreign keys:
✑ Due Date
✑ Order Date
✑ Delivery Date
You need to support the analysis of sales over time based on all the date foreign keys.
Solution: For each date foreign key, you add inactive relationships between the sales table and the date table. Does this meet the goal?
Yes
No
Answer explanation
Instead: Solution: From the Fields pane, you rename the date table as Due Date. You use a DAX expression to create Order Date and Delivery Date as calculated tables.Reference:https://docs.microsoft.com/en-us/power-bi/guidance/relationships-active-inactive
The answer should be NO. You can reference an inactive relationship whit DAX function USERELATIONSHIP(), but using DAX is not mentioned here. So follow this refactory methodology: Create a copy of the role-playing table, providing it with a name that reflects its role. If it's an Import table, we recommend defining a calculated table. If it's a DirectQuery table, you can duplicate the Power Query query. Source: https://learn.microsoft.com/en-us/power-bi/guidance/relationships-active-inactive
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a Power BI report that imports a date table and a sales table from an Azure SQL database data source. The sales table has the following date foreign keys: ✑ Due Date ✑ Order Date ✑ Delivery Date You need to support the analysis of sales over time based on all the date foreign keys. Solution: From the Fields pane, you rename the date table as Due Date. You use a DAX expression to create Order Date and Delivery Date as calculated tables. Does this meet the goal?
Yes
No
Answer explanation
Refactoring methodology -Here's a methodology to refactor a model from a single role-playing dimension-type table, to a design with one table per role.1. Remove any inactive relationships.2. Consider renaming the role-playing dimension-type table to better describe its role. In the example (not present here), the Airport table is related to theArrivalAirport column of the Flight table, so it's renamed as Arrival Airport.3. Create a copy of the role-playing table, providing it with a name that reflects its role. If it's an Import table, we recommend defining a calculated table. If it's aDirectQuery table, you can duplicate the Power Query query.In the example, the Departure Airport table was created by using the following calculated table definition.Departure Airport = 'Arrival Airport'Create an active relationship to relate the new table.4. Consider renaming the columns in the tables so they accurately reflect their role. In the example, all columns are prefixed with the word Departure or Arrival.These names ensure report visuals, by default, will have self-describing and non-ambiguous labels. It also improves the Q&A experience, allowing users to easily write their questions.5. Consider adding descriptions to role-playing tables. (In the Fields pane, a description appears in a tooltip when a report author hovers their cursor over the table.) This way, you can communicate any additional filter propagation details to your report authors.Reference:https://docs.microsoft.com/en-us/power-bi/guidance/relationships-active-inactive
Create a free account and access millions of resources
Similar Resources on Wayground
32 questions
Introduction to the real estate business - unit 1

Quiz
•
Professional Development
35 questions
Careers, Certifications, & Users of Accounting Information

Quiz
•
Professional Development
32 questions
Final Practice

Quiz
•
Professional Development
40 questions
SAP FI Certification Review

Quiz
•
Professional Development
33 questions
WCV workflow Quality Gaps Quiz

Quiz
•
Professional Development
34 questions
Customer Service Workshop 2

Quiz
•
Professional Development
40 questions
การจัดการขาย

Quiz
•
Professional Development
40 questions
Integrated Logistics Support

Quiz
•
Professional Development
Popular Resources on Wayground
18 questions
Writing Launch Day 1

Lesson
•
3rd Grade
11 questions
Hallway & Bathroom Expectations

Quiz
•
6th - 8th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
40 questions
Algebra Review Topics

Quiz
•
9th - 12th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
19 questions
Handbook Overview

Lesson
•
9th - 12th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade