ExamGecko
Home Home / Microsoft / PL-300

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

Question list
Search
Search

List of questions

Search

Related questions











You are creating a dashboard by using the Power Bl service.

You have an existing report page that contains three charts.

You need to add the charts to the dashboard while maintaining the interactivity between the charts. What should you do?

A.

Pin each chart as a tile.

A.

Pin each chart as a tile.

Answers
B.

Edit interactions in the report and set all interactions to Filter

B.

Edit interactions in the report and set all interactions to Filter

Answers
C.

Edit the dashboard theme and pin each chart as a file.

C.

Edit the dashboard theme and pin each chart as a file.

Answers
D.

Pin the report page as a live tile.

D.

Pin the report page as a live tile.

Answers
Suggested answer: D

You have a dataset that is used infrequently and refreshes every hour.

You receive a notification that the refresh was disabled due to inactivity.

Which two actions will cause the scheduled refresh schedule to resume? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.

A.

Enable query caching for the dataset.

A.

Enable query caching for the dataset.

Answers
B.

Import the dataset to Microsoft Excel.

B.

Import the dataset to Microsoft Excel.

Answers
C.

From the Power BI service, open a dashboard that uses the dataset.

C.

From the Power BI service, open a dashboard that uses the dataset.

Answers
D.

From the Power BI service, open a report that uses the dataset.

D.

From the Power BI service, open a report that uses the dataset.

Answers
E.

From PowerShell, run the get-powerbireport cmdlet.

E.

From PowerShell, run the get-powerbireport cmdlet.

Answers
Suggested answer: C, D

Explanation:

After two months of inactivity, scheduled refresh on your dataset is paused. A dataset is considered inactive when no user has visited any dashboard or report built on the dataset. At that time, the dataset owner is sent an email indicating the scheduled refresh is paused. The refresh schedule for the dataset is then displayed as disabled. To resume scheduled refresh, simply revisit any dashboard or report built on the dataset. https://learn.microsoft.com/en-us/power-bi/connect-data/refreshscheduled-refresh#scheduled-refresh

In Power BI Desktop, you are creating a report that will contain three pages.

You need to create a custom tooltip page and prepare the page for use.

Which three actions should you perform? Each correct answer presents part of the solution.

A.

Configure filters on the target visual.

A.

Configure filters on the target visual.

Answers
B.

For the target page, set Allow use as tooltip to On.

B.

For the target page, set Allow use as tooltip to On.

Answers
C.

Add and configure visuals on the tooltip page.

C.

Add and configure visuals on the tooltip page.

Answers
D.

For the tooltip page, set Allow use as tooltip to On.

D.

For the tooltip page, set Allow use as tooltip to On.

Answers
E.

For the tooltip page, configure filters.

E.

For the tooltip page, configure filters.

Answers
Suggested answer: B, C, D

Explanation:

You can create a custom tooltip page that shows more details about the selected category, such as this:

To create a custom tooltip page and prepare it for use, you need to perform these three actions34:

Add and configure visuals on the tooltip page. You can add any visuals, images, or other items that you want to show on the tooltip page. You can also format them as you like. For the tooltip page, set Allow use as tooltip to On. This will enable Power BI to recognize this page as a tooltip page. You can also change the Page size to Tooltip to fit your content better. For the target visual, set Tooltip type to Report page. This will allow you to select which report page you want to use as a custom tooltip for your visual. You can also filter your tooltip by fields from your target visual.

You are creating a query to be used as a Country dimension in a star schema.

A snapshot of the source data is shown in the following table.

You need to create the dimension. The dimension must contain a list of unique countries.

Which two actions should you perform? Each correct answer presents part of the solution.

A.

Remove duplicates from the Country column.

A.

Remove duplicates from the Country column.

Answers
B.

Remove duplicates from the City column.

B.

Remove duplicates from the City column.

Answers
C.

Remove duplicates from the table.

C.

Remove duplicates from the table.

Answers
D.

Delete the City column.

D.

Delete the City column.

Answers
E.

Delete the Country column.

E.

Delete the Country column.

Answers
Suggested answer: A, D

Explanation:

To create a dimension table for Country from your source data, you need to perform these two actions34:

Delete the City column. You don’t need this column for your Country dimension, as it is not a descriptive attribute of Country. You can create another dimension table for City if you want to use it in your analysis. Remove duplicates from the Country column. You want to have a list of unique countries in your dimension table, so you need to remove any duplicate values from this column.

Remove unused columns from tables in the data model. This will reduce the size of your PBIX file and make your data model more efficient. You can use Power Query Editor to remove any columns that are not used in your report or calculations.

You need to shape the query to display the following three columns:

* Month

* Sales

* Year

What should you select in Power Query Editor?

A.

Pivot column

A.

Pivot column

Answers
B.

Merge columns

B.

Merge columns

Answers
C.

Unpivot columns.

C.

Unpivot columns.

Answers
D.

Transpose

D.

Transpose

Answers
Suggested answer: C

Explanation:

This will convert your column headers (Jan-20, Feb-20,…) into row values under a new column called Attribute. You can then rename this column as Month and change its data type to Date. You will also have a new column called Value that contains the sales amounts for each month. You can rename this column as Sales and change its data type to Decimal Number.

You have a CSV file that contains user complaints. The file contains a column named Logged. Logged contains the date and time each compliant occurred. The data in Logged is in the fol-lowing format:

2018-12-31 at 08:59. You need to be able to analyze the complaints by the logged date and use a built-in date hierarchy. What should you do?

A.

Create a column by example that starts with 2018-12-31.

A.

Create a column by example that starts with 2018-12-31.

Answers
B.

Apply a transformation to extract the last 11 characters of the Logged column and set the data type of the new column to Date.

B.

Apply a transformation to extract the last 11 characters of the Logged column and set the data type of the new column to Date.

Answers
C.

Apply a transformation to extract the first 11 characters of the Logged column.

C.

Apply a transformation to extract the first 11 characters of the Logged column.

Answers
D.

split the Logged column by using at as the delimiter.

D.

split the Logged column by using at as the delimiter.

Answers
Suggested answer: C

Explanation:

According to Microsoft Certified: Power BI Data Analyst Associate1, Power Query Editor is a tool that lets you connect to one or many data sources, shape and transform the data to meet your needs, then load that model into Power BI Desktop2.

One of the transformations you can perform in Power Query Editor is extract date from text, which creates a date value from a textual representation3. For example, given a text column like this:

Logged

2018-12-31 at 08:59

2019-01-01 at 09:15

You can extract the date part by using the Date.FromText function with a specific format4. The result will be:

Logged

Date

2018-12-31 at 08:59

2018-12-31

2019-01-01 at 09:15

2019-01-01

This makes it possible to use a built-in date hierarchy for analysis



DRAG DROP

You have a Power Bl report that contains three pages. The pages are used to analyze sales across various countries.

You add a sheer named Country to each page of the report.

You need to configure the report to meet the following requirements:

• When a user selects a country on the first page, the report must filter the other pages.

• The second and third pages must display only the filtered results.

Which task should you perform for each requirement? To answer, drag the appropriate task to the correct requirement. Each task may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE Each correct selection is worth one point.



Question 297
Correct answer: Question 297

HOTSPOT

You have the Power Bl data model shown in the following exhibit.

You need to create a measure to count the number of product categories that had products sold during a selected period. 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 298
Correct answer: Question 298

DRAG DROP

You have the Power Bl data model shown in the following exhibit.

You create two row-level security (RlS) roles named Manager and CFO.

You plan to publish the dataset to the Power Bl service.

You need to create DAX expressions for the RLS filters. The solution must meet the following requirements:

• Each manager must see only the data in the Sales and Human Resources tables for their own country.

• The CFO must be prevented from seeing the data in the Human Resources table.

• The CFO must see the sales data of all countries.

How should you complete the DAX expressions to meet the requirements? To answer, drag the appropriate expressions to the correct targets. Each expression may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

The Country table contains the following data.

You plan to publish the dataset to the Power Bl service.

You need to create DAX expressions for the RLS filters. The solution must meet the following requirements:

• Each manager must see only the data in the Sales and Human Resources tables for their own country.

• The CFO must be prevented from seeing the data in the Human Resources table.

• The CFO must see the sales data of all countries.

How should you complete the DAX expressions to meet the requirements? To answer, drag the appropriate expressions to the correct targets. Each expression may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.


Question 299
Correct answer: Question 299

You are building a Power Bl report.

Users will view the report by using their mobile device.

You need to configure the report to display data based on each user s location.

Which two actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

A.

For the relevant columns, set synonyms to match common geographical terms.

A.

For the relevant columns, set synonyms to match common geographical terms.

Answers
B.

From Power Query Editor, detect the data types of the relevant columns.

B.

From Power Query Editor, detect the data types of the relevant columns.

Answers
C.

Use the columns of the geography data type in all visuals.

C.

Use the columns of the geography data type in all visuals.

Answers
D.

Create a hierarchy for columns of the geography data type.

D.

Create a hierarchy for columns of the geography data type.

Answers
E.

In Data Category, set the geographic data category for the relevant columns.

E.

In Data Category, set the geographic data category for the relevant columns.

Answers
Suggested answer: C, E
Total 370 questions
Go to page: of 37