ExamGecko
Home / Microsoft / PL-300 / List of questions
Ask Question

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

List of questions

Question 21

Report
Export
Collapse

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.


Microsoft PL-300 image Question 21 106245 10052024010716000
Correct answer: Microsoft PL-300 image answer Question 21 106245 10052024010716000

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.

asked 05/10/2024
Sergio Guerra
43 questions

Question 22

Report
Export
Collapse

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

What should you do?

From each report in powerbi.com. select Refresh visuals

From each report in powerbi.com. select Refresh visuals

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

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

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

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

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

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

Suggested answer: C
asked 05/10/2024
WONG CHUN KIT WONG CHUN KIT
28 questions

Question 23

Report
Export
Collapse

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?

One to one

One to one

Many to one

Many to one

One to many

One to many

Many to many

Many to many

Suggested answer: C
asked 05/10/2024
Mark Lalangan
38 questions

Question 24

Report
Export
Collapse

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

What should you do in Power BI Desktop?

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.

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.

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

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

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

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

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.

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.

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.

asked 05/10/2024
Prenolan Kamiah
41 questions

Question 25

Report
Export
Collapse

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?

bar chart

bar chart

scatterplot

scatterplot

pie chart

pie chart

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

asked 05/10/2024
Robert Thompson
45 questions

Question 26

Report
Export
Collapse

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

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

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

Filter out discontinued products while importing the Product table.

Filter out discontinued products while importing the Product table.

Remove the QuantityPerUnit column from the Products table

Remove the QuantityPerUnit column from the Products table

Group the Categories table by the CategorylD column.

Group the Categories table by the CategorylD column.

Suggested answer: C
asked 05/10/2024
Angela Cappa
34 questions

Question 27

Report
Export
Collapse

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

Add the sales department as a member of the reports workspace

Add the sales department as a member of the reports workspace

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

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

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

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

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

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

Suggested answer: B
asked 05/10/2024
ABDUL AZEEZ
36 questions

Question 28

Report
Export
Collapse

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

DirectQuery

DirectQuery

Import

Import

Live connection

Live connection

Composite

Composite

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.

asked 05/10/2024
Rashid Hashim
45 questions

Question 29

Report
Export
Collapse

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.


Microsoft PL-300 image Question 29 106253 10052024010716000
Correct answer: Microsoft PL-300 image answer Question 29 106253 10052024010716000

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

asked 05/10/2024
Dasaret Tillman
40 questions

Question 30

Report
Export
Collapse

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.


Microsoft PL-300 image Question 30 106254 10052024010716000
Correct answer: Microsoft PL-300 image answer Question 30 106254 10052024010716000

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

asked 05/10/2024
Dmitry Balikhin
24 questions
Total 370 questions
Go to page: of 37
Search

Related questions