ExamGecko
Home Home / Microsoft / PL-300

Microsoft PL-300 Practice Test - Questions Answers, Page 3

Question list
Search
Search

List of questions

Search

Related questions











HOTSPOT

How should you distribute the reports to the board? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.


Question 21
Correct answer: Question 21

Explanation:

Box 1: Using a workspace membership

Scenario:

The company wants to provide a single package of reports to the board that contains custom navigation and links to supplementary information. Note: Workspace is a shared environment for a group of people. You can have multiple Power BI content in a workspace. One workspace can have hundreds of dashboards, reports, and datasets in it. Box 2: A mail-enabled security group

Scenario: Security Requirements

The reports must be made available to the board from powerbi.com. A mail-enabled security group will be used to share information with the board.

You need to ensure that the data is updated to meet the report requirements. The solution must minimize configuration effort.

What should you do?

A.

From each report in powerbi.com. select Refresh visuals

A.

From each report in powerbi.com. select Refresh visuals

Answers
B.

From Power Bl Desktop, download the PBIX file and refresh the data.

B.

From Power Bl Desktop, download the PBIX file and refresh the data.

Answers
C.

Configure a scheduled refresh without using an on-premises data gateway.

C.

Configure a scheduled refresh without using an on-premises data gateway.

Answers
D.

Configure a scheduled refresh by using an on-premises data gateway

D.

Configure a scheduled refresh by using an on-premises data gateway

Answers
Suggested answer: C

You need to create the relationship between the product list and the revenue results. The solution must minimize the time it takes to render visuals.

What should you set as the relationship cardinality?

A.

One to one

A.

One to one

Answers
B.

Many to one

B.

Many to one

Answers
C.

One to many

C.

One to many

Answers
D.

Many to many

D.

Many to many

Answers
Suggested answer: C

You need to design the data model to meet the report requirements.

What should you do in Power BI Desktop?

A.

From Power Query, use a DAX expression to add columns to the Orders table to calculate the calendar quarter of the OrderDate column, the calendar month of the OrderDate column, the calendar quarter of the ShippedDate column, and the calendar month of the ShippedDate column.

A.

From Power Query, use a DAX expression to add columns to the Orders table to calculate the calendar quarter of the OrderDate column, the calendar month of the OrderDate column, the calendar quarter of the ShippedDate column, and the calendar month of the ShippedDate column.

Answers
B.

From Power Query, add columns to the Orders table to calculate the calendar quarter and the calendar month of the OrderDate column.

B.

From Power Query, add columns to the Orders table to calculate the calendar quarter and the calendar month of the OrderDate column.

Answers
C.

From Power Bl Desktop, use the Auto date/time option when creating the reports.

C.

From Power Bl Desktop, use the Auto date/time option when creating the reports.

Answers
D.

From Power Query, add a date table. Create an active relationship to the OrderDate column in the Orders table and an inactive relationship to the ShippedDate column in the Orders table.

D.

From Power Query, add a date table. Create an active relationship to the OrderDate column in the Orders table and an inactive relationship to the ShippedDate column in the Orders table.

Answers
Suggested answer: B

Explanation:

Use Power Query to calculate calendar quarter and calendar month.

Scenario:

A single dataset must support all three reports:

- The Top Customers report will show the top 20 customers based on the highest sales amounts in a selected order month or quarter, product category, and sales region. - The Top Products report will show the top 20 products based on the highest sales amounts sold in a selected order month or quarter, sales region, and product category. The data model must minimize the size of the dataset as much as possible, while meeting the report requirements and the technical requirements.

You need to create the On-Time Shipping report. The report must include a visualization that shows the percentage of late orders. Which type of visualization should you create?

A.

bar chart

A.

bar chart

Answers
B.

scatterplot

B.

scatterplot

Answers
C.

pie chart

C.

pie chart

Answers
Suggested answer: A

Explanation:

Scenario: The On-Time Shipping report will show the following metrics for a selected shipping month or quarter:

The percentage of orders that were shipped late by country and shipping region Customers that had multiple late shipments during the last quarter Note: Bar and column charts are some of the most widely used visualization charts in Power BI. They can be used for one or multiple categories. Both these chart types represent data with rectangular bars, where the size of the bar is proportional to the magnitude of data values. The difference between the two is that if the rectangles are stacked horizontally, it is called a bar chart. If the rectangles are vertically aligned, it is called a column chart.

Reference:

https://www.pluralsight.com/guides/bar-and-column-charts-in-power-bi

You need to minimize me size of the dataset. The solution must meet the report requirements What should you do?

A.

Change lite OrderlD column in the Orders table to the text data type.

A.

Change lite OrderlD column in the Orders table to the text data type.

Answers
B.

Filter out discontinued products while importing the Product table.

B.

Filter out discontinued products while importing the Product table.

Answers
C.

Remove the QuantityPerUnit column from the Products table

C.

Remove the QuantityPerUnit column from the Products table

Answers
D.

Group the Categories table by the CategorylD column.

D.

Group the Categories table by the CategorylD column.

Answers
Suggested answer: C

You need to configure access for the sales department users. The solution must me meet the security requirements. What should you do?

A.

Add the sales department as a member of the reports workspace

A.

Add the sales department as a member of the reports workspace

Answers
B.

Add the Azure Active Directory group of the sales department as an Admin of the reports workspace.

B.

Add the Azure Active Directory group of the sales department as an Admin of the reports workspace.

Answers
C.

Distribute an app to the users in the Azure Active Directory group of the sales department.

C.

Distribute an app to the users in the Azure Active Directory group of the sales department.

Answers
D.

Share each report to the Azure Active Directory group of the sales department.

D.

Share each report to the Azure Active Directory group of the sales department.

Answers
Suggested answer: B

You need to create the dataset. Which dataset mode should you use?

A.

DirectQuery

A.

DirectQuery

Answers
B.

Import

B.

Import

Answers
C.

Live connection

C.

Live connection

Answers
D.

Composite

D.

Composite

Answers
Suggested answer: D

Explanation:

Composite Model means now you can have a model, that very large tables of that are coming from the DirectQuery connection, without the need for importing, and small tables to be imported to be accessible quickly.

HOTSPOT

You need to create a measure that will return the percentage of late orders.

How should you complete the DAX expression? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.


Question 29
Correct answer: Question 29

Explanation:

Box 1: CALCULATE

CALCULATE evaluates an expression in a modified filter context.

Syntax: CALCULATE(<expression>[, <filter1> [, <filter2> [, …]]])

Expression - The expression to be evaluated. filter1, filter2,… (Optional) Boolean expressions or table expressions that defines filters, or filter modifier functions. Box 2: FILTER

FILTER returns a table that represents a subset of another table or expression.

Syntax: FILTER(<table>,<filter>)

Table- The table to be filtered. The table can also be an expression that results in a table.

Filter - A Boolean expression that is to be evaluated for each row of the table. For example, [Amount] > 0 or [Region] = "France" Box 3: Orders[ShippedDate]> Orders[RequiredDate] Northwind Traders defines late orders as those shipped after the required shipping date.

Reference:

https://docs.microsoft.com/en-us/dax/calculate-function-dax

https://docs.microsoft.com/en-us/dax/filter-function-dax

HOTSPOT

You need to create a relationship in the dataset for RLS.

What should you do? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Question 30
Correct answer: Question 30

Explanation:

Box 1: many-to-one

Each employee in the Sales Employees table is assigned to one sales region. Multiple employees can be assigned to each region. The Suppliers table has a Region column.

Box 2: Suppliers table

Total 370 questions
Go to page: of 37