ExamGecko
Home Home / Microsoft / PL-300

Microsoft PL-300 Practice Test - Questions Answers

Question list
Search
Search

List of questions

Search

Related questions











You need to address the data concerns before creating the data model. What should you do in Power Query Editor?

A.

Select Column distribution.

A.

Select Column distribution.

Answers
B.

Select the sales_amount column and apply a number filter.

B.

Select the sales_amount column and apply a number filter.

Answers
C.

Select Column profile, and then select the sales_amount column.

C.

Select Column profile, and then select the sales_amount column.

Answers
D.

Transform the sales_amount column to replace negative values with 0.

D.

Transform the sales_amount column to replace negative values with 0.

Answers
Suggested answer: C

You need to create a calculated column to display the month based on the reporting requirements.

Which DAX expression should you use?

A.

FORMAT('Date'[date], "MMM YYYY")

A.

FORMAT('Date'[date], "MMM YYYY")

Answers
B.

FORMAT('Date' [date], "M YY")

B.

FORMAT('Date' [date], "M YY")

Answers
C.

FORMAT('Date'[date_id], "MMM") & "" & FORMAT('Date'[year], "#")

C.

FORMAT('Date'[date_id], "MMM") & "" & FORMAT('Date'[year], "#")

Answers
D.

FORMAT('Date' [date_id], "MMM YYYY")

D.

FORMAT('Date' [date_id], "MMM YYYY")

Answers
Suggested answer: A

You need to create the required relationship for the executive's visual. What should you do before you can create the relationship?

A.

Change the data type of Sales[region_id] to Whole Number.

A.

Change the data type of Sales[region_id] to Whole Number.

Answers
B.

In the Sales table, add a measure for sum(sales_amount).

B.

In the Sales table, add a measure for sum(sales_amount).

Answers
C.

Change the data type of sales[sales_id] to Text.

C.

Change the data type of sales[sales_id] to Text.

Answers
D.

Change the data type of sales [region_id] to Decimal Number.

D.

Change the data type of sales [region_id] to Decimal Number.

Answers
Suggested answer: A

Explanation:

Scenario: Executives require a visual that shows sales by region.

Need to change the sales_id column from Varchar to Whole Number (Integer).

What should you create to meet the reporting requirements of the sales department?

A.

a measure that uses a formula of SUM (Sales [sales_id])

A.

a measure that uses a formula of SUM (Sales [sales_id])

Answers
B.

a calculated column that use a formula of COUNTA(sales [sales_id])

B.

a calculated column that use a formula of COUNTA(sales [sales_id])

Answers
C.

a measure that uses a formula of COUNTROWS (Sales)

C.

a measure that uses a formula of COUNTROWS (Sales)

Answers
D.

a calculated column that uses a formula of SUM (Sales [sales_id])

D.

a calculated column that uses a formula of SUM (Sales [sales_id])

Answers
Suggested answer: C

Explanation:

The sale department requires reports that contain the number of sales transactions.

The COUNTROWS function counts the number of rows in the specified table, or in a table defined by an expression.

Reference:

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

You need to create a relationship between the Weekly_Returns table and the Date table to meet the reporting requirements of the regional managers. What should you do?

A.

In the Weekly.Returns table, create a new calculated column named date-id in a format of yyyymmdd and use the calculated column to create a relationship to the Date table.

A.

In the Weekly.Returns table, create a new calculated column named date-id in a format of yyyymmdd and use the calculated column to create a relationship to the Date table.

Answers
B.

Add the Weekly_Returns data to the Sales table by using related DAX functions.

B.

Add the Weekly_Returns data to the Sales table by using related DAX functions.

Answers
C.

Create a new table based on the Date table where date-id is unique, and then create a many-tomany relationship to Weekly_Return.

C.

Create a new table based on the Date table where date-id is unique, and then create a many-tomany relationship to Weekly_Return.

Answers
Suggested answer: A

Explanation:

Scenario: Region managers require a visual to analyze weekly sales and returns.

To relate the two tables we need a common column.

You need to provide a solution to provide the sales managers with the required access.

What should you include in the solution?

A.

Create a security role that has a table filter on the Sales_Manager table where username = UserName()

A.

Create a security role that has a table filter on the Sales_Manager table where username = UserName()

Answers
B.

Create a security role that has a table filter on the Region_Manager table where sales_manager_id = UserPrincipalName().

B.

Create a security role that has a table filter on the Region_Manager table where sales_manager_id = UserPrincipalName().

Answers
C.

Create a security role that has a table filter on the Sales_Manager table where name = UserName().

C.

Create a security role that has a table filter on the Sales_Manager table where name = UserName().

Answers
D.

Create a security role that has a table filter on the Sales_Manager table where username = sales_manager_id.

D.

Create a security role that has a table filter on the Sales_Manager table where username = sales_manager_id.

Answers
Suggested answer: A

Explanation:

https://powerbi.microsoft.com/en-us/blog/using-username-in-dax-with-row-level-security/

You need to create relationships to meet the reporting requirements of the customer service department. What should you create?

A.

an additional date table named ShipDate, a one-to-many relationship from Sales[sales_date_id] to Date[date_id], and a one-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id]

A.

an additional date table named ShipDate, a one-to-many relationship from Sales[sales_date_id] to Date[date_id], and a one-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id]

Answers
B.

an additional date table named ShipDate, a many-to-many relationship from Sales[sales_date_id] to Date[date_id], and a many-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id]

B.

an additional date table named ShipDate, a many-to-many relationship from Sales[sales_date_id] to Date[date_id], and a many-to-many relationship from Sales[sales_ship_date_id] to ShipDate[date_id]

Answers
C.

a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Weekly_Returns[week_id]

C.

a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Weekly_Returns[week_id]

Answers
D.

a one-to-many relationship from Sales[sales_date_id] to Date[date_id] and a one-to-many relationship from Sales[sales_ship_date_id] to Date[date_id]

D.

a one-to-many relationship from Sales[sales_date_id] to Date[date_id] and a one-to-many relationship from Sales[sales_ship_date_id] to Date[date_id]

Answers
E.

a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Sales[sales_ship_date_id]

E.

a one-to-many relationship from Date[date_id] to Sales[sales_date_id] and another one-to-many relationship from Date[date_id] to Sales[sales_ship_date_id]

Answers
Suggested answer: A

Explanation:

Scenario: The customer service department requires a visual that can be filtered by both sales month and ship month independently.

Reference:

https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-relationships-understand

HOTSPOT

You need to create a visualization to meet the reporting requirements of the sales managers.

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


Question 8
Correct answer: Question 8

Explanation:

Scenario: The sales managers require a visual to analyze sales performance versus sales targets.

Box 1: KPI

A Key Performance Indicator (KPI) is a visual cue that communicates the amount of progress made toward a measurable goal. Box 2: Sales[sales_amount]

Box 3: Date[month]

Time > FiscalMonth. This value will represent the trend.

Box 4: Targets[sales_target]

Reference:

https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-kpi

HOTSPOT

You publish the dataset to powerbi.com.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.


Question 9
Correct answer: Question 9

You need to get data from the Microsoft SQL Server tables. What should you use to configure the connection?

A.

import that uses a Microsoft account

A.

import that uses a Microsoft account

Answers
B.

DirectQuery that uses the end-user s credentials

B.

DirectQuery that uses the end-user s credentials

Answers
C.

DirectQuery that uses a database credential

C.

DirectQuery that uses a database credential

Answers
D.

Import that uses a database credential

D.

Import that uses a database credential

Answers
Suggested answer: B
Total 370 questions
Go to page: of 37