ExamGecko
Home / Microsoft / DP-500 / List of questions
Ask Question

Microsoft DP-500 Practice Test - Questions Answers, Page 2

Add to Whishlist

List of questions

Question 11

Report Export Collapse

DRAG DROP

You need to integrate the external data source to support the planned changes.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.


Microsoft DP-500 image Question 11 90262 10022024015932000
Correct answer: Microsoft DP-500 image answer Question 11 90262 10022024015932000
asked 02/10/2024
saiming wong
42 questions

Question 12

Report Export Collapse

DRAG DROP

You need to create Power Bl reports that will display data based on the customers' subscription level.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.


Microsoft DP-500 image Question 12 90263 10022024015932000
Correct answer: Microsoft DP-500 image answer Question 12 90263 10022024015932000
Explanation:

Step 1: Create row-level security (RLS) roles

Create roles

Note: Provide all the customers with their own Power BI workspace to create their own reports. Each workspace will use the new dataset in the FinData workspace.

Implement subscription levels for the customers. Each subscription level will provide access to specific rows of financial data.

Deploy prebuilt datasets to Power BI to simplify the query experience of the customers.

Step 2: Create a DAX expression

Consider a model with two roles: The first role, named Workers, restricts access to all Payroll table rows by using the following rule expression:

FALSE()

Note: A rule will return no table rows when its expression evaluates to false.

Yet, a second role, named Managers, allows access to all Payroll table rows by using the following rule expression:

TRUE()

Take care: Should a report user map to both roles, they'll see all Payroll table rows.

Step 3: Add members to row-level security (RLS) roles

Configure role mappings

Once [the model is] published to Power BI, you must map members to dataset roles.

Reference: https://docs.microsoft.com/en-us/power-bi/guidance/rls-guidance

asked 02/10/2024
Ray Hato
44 questions

Question 13

Report Export Collapse

You need to identify the root cause of the data refresh issue.

What should you use?

the Usage Metrics Report in powerbi.com
the Usage Metrics Report in powerbi.com
Query Diagnostics in Power Query Editor
Query Diagnostics in Power Query Editor
Performance analyzer in Power Bl Desktop
Performance analyzer in Power Bl Desktop
Suggested answer: B
Explanation:

Users indicate that the data in Power BI reports is stale. You discover that the refresh process of the Power BI model occasionally times out.

With Query Diagnostics, you can achieve a better understanding of what Power Query is doing at authoring and at refresh time in Power BI Desktop. While we'll be expanding on this feature in the future, including adding the ability to use it during full refreshes, at this time you can use it to understand what sort of queries you're emitting, what slowdowns you might run into during authoring refresh, and what kind of background events are happening.

Reference: https://docs.microsoft.com/en-us/power-query/querydiagnostics

asked 02/10/2024
Michaelj Lauth
42 questions

Question 14

Report Export Collapse

Which two possible tools can you use to identify what causes the report to render slowly? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Synapse Studio
Synapse Studio
DAX Studio
DAX Studio
Azure Data Studio
Azure Data Studio
Performance analyzer in Power Bl Desktop
Performance analyzer in Power Bl Desktop
Suggested answer: B, D
Explanation:

Some users indicate that the visuals in Power BI reports are slow to render when making filter selections.

B: You can investigate a slow query in a Power BI report using DAX Studio, looking at the query plan and the server timings.

D: Use Power BI Desktop Performance Analyzer to optimize the report or model.

Reference: https://www.sqlbi.com/tv/analyzing-a-slow-report-query-in-dax-studio/

https://docs.microsoft.com/en-us/power-bi/guidance/report-performance-troubleshoot

asked 02/10/2024
john ignacio echavarria lopez
38 questions

Question 15

Report Export Collapse

You need to recommend a solution to resolve the query issue of the serverless SQL pool. The solution must minimize impact on the users.

What should you in the recommendation?

Update the statistics for the serverless SQL pool.
Update the statistics for the serverless SQL pool.
Move the data from the serverless SQL pool to a dedicated Apache Spark pool.
Move the data from the serverless SQL pool to a dedicated Apache Spark pool.
Execute the sp_sec_process_daca_limic stored procedure for the serverless SQL pool.
Execute the sp_sec_process_daca_limic stored procedure for the serverless SQL pool.
Move the data from the serverless SQL pool to a dedicated SQL pool.
Move the data from the serverless SQL pool to a dedicated SQL pool.
Suggested answer: D
Explanation:

Users indicate that queries against the serverless SQL pool fail occasionally because the size of tempdb has been exceeded.

In the dedicated SQL pool resource, temporary tables offer a performance benefit because their results are written to local rather than remote storage.

Temporary tables in serverless SQL pool.

Temporary tables in serverless SQL pool are supported but their usage is limited. They can't be used in queries which target files.

For example, you can't join a temporary table with data from files in storage. The number of temporary tables is limited to 100, and their total size is limited to 100 MB.

Reference: https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-tables-temporary

asked 02/10/2024
Orenthial Johnson
34 questions

Question 16

Report Export Collapse

HOTSPOT

You need to build a Transact-SQL query to implement the planned changes for the internal users.

How should you complete the Transact-SQL query? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft DP-500 image Question 16 90267 10022024015932000
Correct answer: Microsoft DP-500 image answer Question 16 90267 10022024015932000
Explanation:

Box 1: PREDICT

Provide internal users with the ability to incorporate machine learning models loaded to the dedicated SQL pool.

The example below shows a sample query using prediction function. An additional column with name Score and data type float is created containing the prediction results. All the input data columns as well as output prediction columns are available to display with the select statement.

-- Query for ML predictions

SELECT d.*, p.Score

FROM PREDICT(MODEL = (SELECT Model FROM Models WHERE Id = 1),

DATA = dbo.mytable AS d, RUNTIME = ONNX) WITH (Score float) AS p;

Box 2: WITH

Reference: https://docs.microsoft.com/en-us/azure/synapse-analytics/sql-data-warehouse/sql-datawarehouse-predict

asked 02/10/2024
Jacobo Montes
39 questions

Question 17

Report Export Collapse

The enterprise analytics team needs to notify the report owners of the planned changes. The solution must minimize administrative effort.

What should the team do?

Locate all the downstream reports, identify all the users That are assigned the Admin role, and then send an email to each user.
Locate all the downstream reports, identify all the users That are assigned the Admin role, and then send an email to each user.
Write a PowerShell script to access the Power Bl API that retrieves a list of downstream reports and a list of workspace administrators, and then send an email to each workspace administrator.
Write a PowerShell script to access the Power Bl API that retrieves a list of downstream reports and a list of workspace administrators, and then send an email to each workspace administrator.
Perform impact analysis on the Financial Model dataset to notify the workspace contacts.
Perform impact analysis on the Financial Model dataset to notify the workspace contacts.
Perform impact analysis feature on the lake database data source to notify the workspace contacts.
Perform impact analysis feature on the lake database data source to notify the workspace contacts.
Suggested answer: D
asked 02/10/2024
Nazarii Bybyk
38 questions

Question 18

Report Export Collapse

You need to recommend a solution for the analysts in the Finance and Accounting business unit to mitigate the increase in maintenance of their assets in the Power Bl tenant.

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

NOTE: Each correct selection is worth one point.

Use Microsoft Purview to search for datasets that contain the relevant data.
Use Microsoft Purview to search for datasets that contain the relevant data.
Perform impact analysis on the relevant data source.
Perform impact analysis on the relevant data source.
Create a live connection to a Power Bl dataset.
Create a live connection to a Power Bl dataset.
Create a Power Bl template app.
Create a Power Bl template app.
Suggested answer: A, B
asked 02/10/2024
Dylan Ogle
54 questions

Question 19

Report Export Collapse

HOTSPOT

You need to recommend a security solution for the Power Bl tenant to control external data sharing. The solution must meet the technical requirements.

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

NOTE: Each correct selection is worth one point.


Microsoft DP-500 image Question 19 90270 10022024015932000
Correct answer: Microsoft DP-500 image answer Question 19 90270 10022024015932000
asked 02/10/2024
Alex Zandamela
25 questions

Question 20

Report Export Collapse

HOTSPOT

The enterprise analytics team needs to create a view for the survey response data. The solution must meet the technical requirements.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft DP-500 image Question 20 90271 10022024015932000
Correct answer: Microsoft DP-500 image answer Question 20 90271 10022024015932000
asked 02/10/2024
Adam Vce
42 questions
Total 162 questions
Go to page: of 17
Search

Related questions