Document Details

AbundantVirginiaBeach3980

Uploaded by AbundantVirginiaBeach3980

2024

Microsoft

Tags

Power BI Microsoft Power Apps Data Analysis Datascience

Summary

This document is a set of answers for the December 2024 PL-300 exam. It includes questions regarding Power BI reports, data model creation, and query merging. The questions focus on optimizing data loading, query execution, and report development using Power BI.

Full Transcript

12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 1/339 12/10/24, 3:55 PM...

12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 1/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Topic 1 - Question Set 1 Question #1 Topic 1 HOTSPOT - You plan to create the Power BI model shown in the exhibit. (Click the Exhibit tab.) The data has the following refresh requirements: ✑ Customer must be refreshed daily. ✑ Date must be refreshed once every three years. ✑ Sales must be refreshed in near real time. ✑ SalesAggregate must be refreshed once per week. You need to select the storage modes for the tables. The solution must meet the following requirements: ✑ Minimize the load times of visuals. ✑ Ensure that the data is loaded to the model based on the refresh requirements. Which storage mode should you select for each table? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 2/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: Dual - Customer should use the dual storage mode. Dual: Tables with this setting can act as either cached or not cached, depending on the context of the query that's submitted to the Power BI dataset. In some cases, you fulfill queries from cached data. In other cases, you fulfill queries by executing an on-demand query to the data source. Note: You set the Storage mode property to one of these three values: Import, DirectQuery, and Dual. Box 2: Dual - You can set the dimension tables (Customer, Geography, and Date) to Dual to reduce the number of limited relationships in the dataset, and improve performance. Box 3: DirectQuery - Sales should use the DirectQuery storage mode. DirectQuery: Tables with this setting aren't cached. Queries that you submit to the Power BI dataset‫ג‬€"for example, DAX queries‫ג‬€"and that return data from DirectQuery tables can be fulfilled only by executing on-demand queries to the data source. Queries that you submit to the data source use the query language for that data source, for example, SQL. Box 4: Import - Import: Imported tables with this setting are cached. Queries submitted to the Power BI dataset that return data from Import tables can be fulfilled only from cached data. Reference: https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-storage-mode https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 3/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #2 Topic 1 You have a project management app that is fully hosted in Microsoft Teams. The app was developed by using Microsoft Power Apps. You need to create a Power BI report that connects to the project management app. Which connector should you select? A. Microsoft Teams Personal Analytics B. SQL Server database C. Dataverse D. Dataflows Correct Answer: C Community vote distribution C (100%) Question #3 Topic 1 For the sales department at your company, you publish a Power BI report that imports data from a Microsoft Excel file located in a Microsoft SharePoint folder. The data model contains several measures. You need to create a Power BI report from the existing data. The solution must minimize development effort. Which type of data source should you use? A. Power BI dataset B. a SharePoint folder C. Power BI dataflows D. an Excel workbook Correct Answer: A Community vote distribution A (77%) B (22%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 4/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #4 Topic 1 You import two Microsoft Excel tables named Customer and Address into Power Query. Customer contains the following columns: ✑ Customer ID ✑ Customer Name ✑ Phone ✑ Email Address ✑ Address ID Address contains the following columns: ✑ Address ID ✑ Address Line 1 ✑ Address Line 2 ✑ City ✑ State/Region ✑ Country ✑ Postal Code Each Customer ID represents a unique customer in the Customer table. Each Address ID represents a unique address in the Address table. You need to create a query that has one row per customer. Each row must contain City, State/Region, and Country for each customer. What should you do? A. Merge the Customer and Address tables. B. Group the Customer and Address tables by the Address ID column. C. Transpose the Customer and Address tables. D. Append the Customer and Address tables. Correct Answer: A Community vote distribution A (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 5/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #5 Topic 1 HOTSPOT - You have two Azure SQL databases that contain the same tables and columns. For each database, you create a query that retrieves data from a table named Customer. You need to combine the Customer tables into a single table. The solution must minimize the size of the data model and support scheduled refresh in powerbi.com. What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Correct Answer: Box 1: Append Queries as New - When you have additional rows of data that you'd like to add to an existing query, you append the query. There are two append options: * Append queries as new displays the Append dialog box to create a new query by appending multiple tables. * Append queries displays the Append dialog box to add additional tables to the current query. Incorrect: When you have one or more columns that you'd like to add to another query, you merge the queries. Box 2: Disable loading the query to the data model By default, all queries from Query Editor will be loaded into the memory of Power BI Model. You can disable the load for some queries, especially queries that used as intermediate transformation to produce the final query for the model. Disabling Load doesn't mean the query won't be refreshed, it only means the query won't be loaded into the memory. When you click on Refresh model in Power BI, or when a scheduled refresh happens even queries marked as Disable Load will be refreshed, but their data will be used as intermediate source for other queries instead of loading directly into the model. This is a very basic performance tuning tip, but very important when your Power BI model grows bigger and bigger. Reference: https://docs.microsoft.com/en-us/power-query/append-queries https://radacad.com/performance-tip-for-power-bi-enable-load-sucks-memory-up https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 6/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #6 Topic 1 DRAG DROP - In Power Query Editor, you have three queries named ProductCategory, ProductSubCategory, and Product. Every Product has a ProductSubCategory. Not every ProductsubCategory has a parent ProductCategory. You need to merge the three queries into a single query. The solution must ensure the best performance in Power Query. How should you merge the tables? To answer, drag the appropriate merge types to the correct queries. Each merge type 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. Select and Place: Correct Answer: Box 1: Inner - Every Product has a ProductSubCategory. A standard join is needed. One of the join kinds available in the Merge dialog box in Power Query is an inner join, which brings in only matching rows from both the left and right tables. Box 2: Left outer - Not every ProductsubCategory has a parent ProductCategory. One of the join kinds available in the Merge dialog box in Power Query is a left outer join, which keeps all the rows from the left table and brings https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 7/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics in any matching rows from the right table. Reference: https://docs.microsoft.com/en-us/power-query/merge-queries-inner https://docs.microsoft.com/en-us/power-query/merge-queries-left-outer Question #7 Topic 1 You are building a Power BI report that uses data from an Azure SQL database named erp1. You import the following tables. You need to perform the following analyses: ✑ Orders sold over time that include a measure of the total order value Orders by attributes of products sold The solution must minimize update times when interacting with visuals in the report. What should you do first? A. From Power Query, merge the Order Line Items query and the Products query. B. Create a calculated column that adds a list of product categories to the Orders table by using a DAX function. C. Calculate the count of orders per product by using a DAX function. D. From Power Query, merge the Orders query and the Order Line Items query. Correct Answer: D Community vote distribution D (74%) A (26%) Question #8 Topic 1 You have a Microsoft SharePoint Online site that contains several document libraries. One of the document libraries contains manufacturing reports saved as Microsoft Excel files. All the manufacturing reports have the same data structure. You need to use Power BI Desktop to load only the manufacturing reports to a table for analysis. What should you do? A. Get data from a SharePoint folder and enter the site URL Select Transform, then filter by the folder path to the manufacturing reports library. B. Get data from a SharePoint list and enter the site URL. Select Combine & Transform, then filter by the folder path to the manufacturing reports library. C. Get data from a SharePoint folder, enter the site URL, and then select Combine & Load. D. Get data from a SharePoint list, enter the site URL, and then select Combine & Load. Correct Answer: A Community vote distribution A (85%) Other https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 8/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #9 Topic 1 DRAG DROP - You have a Microsoft Excel workbook that contains two sheets named Sheet1 and Sheet2. Sheet1 contains the following table named Table1. Sheet2 contains the following table named Table2. You need to use Power Query Editor to combine the products from Table1 and Table2 into the following table that has one column containing no duplicate values. 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. Select and Place: Correct Answer: Reference: https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-shape-and-combine-data https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 9/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #10 Topic 1 You have a CSV file that contains user complaints. The file contains a column named Logged. Logged contains the date and time each complaint occurred. The data in Logged is in the following 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. 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. Change the data type of the Logged column to Date. C. Split the Logged column by using at as the delimiter. D. Apply a transformation to extract the first 11 characters of the Logged column. Correct Answer: C Community vote distribution C (89%) 8% Question #11 Topic 1 You have a Microsoft Excel file in a Microsoft OneDrive folder. The file must be imported to a Power BI dataset. You need to ensure that the dataset can be refreshed in powerbi.com. Which two connectors can you use to connect to the file? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Excel Workbook B. Text/CSV C. Folder D. SharePoint folder E. Web Correct Answer: DE Community vote distribution DE (83%) Other https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 10/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #12 Topic 1 HOTSPOT - You are profiling data by using Power Query Editor. You have a table named Reports that contains a column named State. The distribution and quality data metrics for the data in State is shown in the following exhibit. Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct selection is worth one point. Hot Area: Correct Answer: Box 1: 69 - 69 distinct/different values. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 11/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Note: Column Distribution allows you to get a sense for the overall distribution of values within a column in your data previews, including the count of distinct values (total number of different values found in a given column) and unique values (total number of values that only appear once in a given column). Box 2: 4 - Reference: https://systemmanagement.ro/2018/10/16/power-bi-data-profiling-distinct-vs-unique/ https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 12/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #13 Topic 1 HOTSPOT - You have two CSV files named Products and Categories. The Products file contains the following columns: ✑ ProductID ✑ ProductName ✑ SupplierID ✑ CategoryID The Categories file contains the following columns: ✑ CategoryID ✑ CategoryName ✑ CategoryDescription From Power BI Desktop, you import the files into Power Query Editor. You need to create a Power BI dataset that will contain a single table named Product. The Product will table includes the following columns: ✑ ProductID ✑ ProductName ✑ SupplierID ✑ CategoryID ✑ CategoryName ✑ CategoryDescription How should you combine the queries, and what should you do on the Categories query? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: Correct Answer: Box 1: Merge - There are two primary ways of combining queries: merging and appending. * When you have one or more columns that you'd like to add to another query, you merge the queries. * When you have additional rows of data that you'd like to add to an existing query, you append the query. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 13/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Box 2: Disable the query load - Managing loading of queries - In many situations, it makes sense to break down your data transformations in multiple queries. One popular example is merging where you merge two queries into one to essentially do a join. In this type of situations, some queries are not relevant to load into Desktop as they are intermediate steps, while they are still required for your data transformations to work correctly. For these queries, you can make sure they are not loaded in Desktop by un-checking 'Enable load' in the context menu of the query in Desktop or in the Properties screen: Reference: https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-shape-and-combine-data https://docs.microsoft.com/en-us/power- bi/connect-data/refresh-include-in-report-refresh Question #14 Topic 1 You have an Azure SQL database that contains sales transactions. The database is updated frequently. You need to generate reports from the data to detect fraudulent transactions. The data must be visible within five minutes of an update. How should you configure the data connection? A. Add a SQL statement. B. Set the Command timeout in minutes setting. C. Set Data Connectivity mode to Import. D. Set Data Connectivity mode to DirectQuery. Correct Answer: D Community vote distribution D (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 14/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #15 Topic 1 DRAG DROP - You have a folder that contains 100 CSV files. You need to make the file metadata available as a single dataset by using Power BI. The solution must NOT store the data of the CSV files. 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. Select and Place: Correct Answer: Step 1: From Power BI Desktop, Select Get Data, and then Select Folder. Open Power BI Desktop and then select Get Data\More‫ג‬€¦ and choose Folder from the All options on the left. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 15/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Enter the folder path, select OK, and then select Transform data to see the folder's files in Power Query Editor. Step 2: From Power Query Editor, expand the Attributes column. Step 3: From Power Query Editor, combine the Content column. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 16/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Combine files behavior - To combine binary files in Power Query Editor, select Content (the first column label) and select Home > Combine Files. Or you can just select the Combine Files icon next to Content. Reference: https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-combine-binaries Question #16 Topic 1 A business intelligence (BI) developer creates a dataflow in Power BI that uses DirectQuery to access tables from an on-premises Microsoft SQL server. The Enhanced Dataflows Compute Engine is turned on for the dataflow. You need to use the dataflow in a report. The solution must meet the following requirements: ✑ Minimize online processing operations. ✑ Minimize calculation times and render times for visuals. ✑ Include data from the current year, up to and including the previous day. What should you do? A. Create a dataflows connection that has DirectQuery mode selected. B. Create a dataflows connection that has DirectQuery mode selected and configure a gateway connection for the dataset. C. Create a dataflows connection that has Import mode selected and schedule a daily refresh. D. Create a dataflows connection that has Import mode selected and create a Microsoft Power Automate solution to refresh the data hourly. Correct Answer: C Community vote distribution C (93%) 8% https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 17/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #17 Topic 1 DRAG DROP - You publish a dataset that contains data from an on-premises Microsoft SQL Server database. The dataset must be refreshed daily. You need to ensure that the Power BI service can connect to the database and refresh the dataset. Which four 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. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 18/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #18 Topic 1 You attempt to connect Power BI Desktop to a Cassandra database. From the Get Data connector list, you discover that there is no specific connector for the Cassandra database. You need to select an alternate data connector that will connect to the database. Which type of connector should you choose? A. Microsoft SQL Server database B. ODBC C. OLE DB D. OData Correct Answer: B Community vote distribution B (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 19/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #19 Topic 1 DRAG DROP - You receive annual sales data that must be included in Power BI reports. From Power Query Editor, you connect to the Microsoft Excel source shown in the following exhibit. You need to create a report that meets the following requirements: Visualizes the Sales value over a period of years and months Adds a slicer for the month Adds a slicer for the year 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. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 20/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #20 Topic 1 HOTSPOT - You are using Power BI Desktop to connect to an Azure SQL database. The connection is configured as shown in the following exhibit. Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct solution is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 21/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #21 Topic 1 HOTSPOT - You have the Azure SQL databases shown in the following table. You plan to build a single PBIX file to meet the following requirements: Data must be consumed from the database that corresponds to each stage of the development lifecycle. Power BI deployment pipelines must NOT be used. The solution must minimize administrative effort. What should you do? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 22/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #22 Topic 1 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. NOTE: Each correct selection is worth one point. A. Delete the Country column. B. Remove duplicates from the table. C. Remove duplicates from the City column. D. Delete the City column. E. Remove duplicates from the Country column. Correct Answer: DE Community vote distribution DE (75%) BD (25%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 23/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #23 Topic 1 DRAG DROP - You use Power Query Editor to preview the data shown in the following exhibit. You need to clean and transform the query so that all the rows of data are maintained, and error values in the discount column are replaced with a discount of 0.05. The solution must minimize administrative effort. 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. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 24/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #24 Topic 1 HOTSPOT - You attempt to use Power Query Editor to create a custom column and receive the error message shown in the following exhibit. Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct selection is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 25/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #25 Topic 1 From Power Query Editor, you attempt to execute a query and receive the following error message. Datasource.Error: Could not find file. What are two possible causes of the error? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. You do not have permissions to the file. B. An incorrect privacy level was used for the data source. C. The file is locked. D. The referenced file was moved to a new location. Correct Answer: AD Community vote distribution AD (95%) 5% https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 26/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #26 Topic 1 You have data in a Microsoft Excel worksheet as shown in the following table. You need to use Power Query to clean and transform the dataset. The solution must meet the following requirements: If the discount column returns an error, a discount of 0.05 must be used. All the rows of data must be maintained. Administrative effort must be minimized. What should you do in Power Query Editor? A. Select Replace Errors. B. Edit the query in the Query Errors group. C. Select Remove Errors. D. Select Keep Errors. Correct Answer: A Community vote distribution A (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 27/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #27 Topic 1 You have a CSV file that contains user complaints. The file contains a column named Logged. Logged contains the date and time each complaint occurred. The data in Logged is in the following 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. Apply the Parse function from the Data transformations options to the Logged column. B. Change the data type of the Logged column to Date. C. Split the Logged column by using at as the delimiter. D. Create a column by example that starts with 2018-12-31. Correct Answer: C Community vote distribution C (64%) D (21%) Other Question #28 Topic 1 DRAG DROP - You have two Microsoft Excel workbooks in a Microsoft OneDrive folder. Each workbook contains a table named Sales. The tables have the same data structure in both workbooks. You plan to use Power BI to combine both Sales tables into a single table and create visuals based on the data in the table. The solution must ensure that you can publish a separate report and dataset. Which storage mode should you use for the report file and the dataset file? To answer, drag the appropriate modes to the correct files. Each mode 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. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 28/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #29 Topic 1 You use Power Query to import two tables named Order Header and Order Details from an Azure SQL database. The Order Header table relates to the Order Details table by using a column named Order ID in each table. You need to combine the tables into a single query that contains the unique columns of each table. What should you select in Power Query Editor? A. Merge queries B. Combine files C. Append queries Correct Answer: A Community vote distribution A (91%) 9% Question #30 Topic 1 You have a PBIX file that imports data from a Microsoft Excel data source stored in a file share on a local network. You are notified that the Excel data source was moved to a new location. You need to update the PBIX file to use the new location. What are three ways to achieve the goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. From the Datasets settings of the Power BI service, configure the data source credentials. B. From the Data source settings in Power BI Desktop, configure the file path. C. From Current File in Power BI Desktop, configure the Data Load settings. D. From Power Query Editor, use the formula bar to configure the file path for the applied step. E. From Advanced Editor in Power Query Editor, configure the file path in the M code. Correct Answer: BDE Community vote distribution BDE (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 29/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #31 Topic 1 HOTSPOT - You have a folder that contains 50 JSON files. You need to use Power BI Desktop to make the metadata of the files available as a single dataset. The solution must NOT store the data of the JSON files. Which type of data source should you use, and which transformation should you perform? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 30/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #32 Topic 1 Case Study - This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided. To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study. At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section. To start the case study - To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question. General Overview - Northwind Traders is a specialty food import company. The company recently implemented Power BI to better understand its top customers, products, and suppliers. Business Issues - The sales department relies on the IT department to generate reports in Microsoft SQL Server Reporting Services (SSRS). The IT department takes too long to generate the reports and often misunderstands the report requirements. Existing Environment. Data Sources Northwind Traders uses the data sources shown in the following table. Source2 is exported daily from a third-party system and stored in Microsoft SharePoint Online. Existing Environment. Customer Worksheet Source2 contains a single worksheet named Customer Details. The first 11 rows of the worksheet are shown in the following table. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 31/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics All the fields in Source2 are mandatory. The Address column in Customer Details is the billing address, which can differ from the shipping address. Existing Environment. Azure SQL Database Source1 contains the following tables: Orders Products Suppliers Categories Order Details Sales Employees The Orders table contains the following columns. The Order Details table contains the following columns. The address in the Orders table is the shipping address, which can differ from the billing address. The Products table contains the following columns. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 32/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics The Categories table contains the following columns. The Suppliers table contains the following columns. The Sales Employees table contains the following columns. Each employee in the Sales Employees table is assigned to one sales region. Multiple employees can be assigned to each region. Requirements. Report Requirements https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 33/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Northwind Traders requires the following reports: Top Products Top Customers On-Time Shipping 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 report must also show which suppliers provide the top products. 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 Northwind Traders defines late orders as those shipped after the required shipping date. The warehouse shipping department must be notified if the percentage of late orders within the current month exceeds 5%. The reports must show historical data for the current calendar year and the last three calendar years. Requirements. Technical Requirements Northwind Traders identifies the following technical requirements: A single dataset must support all three reports. The reports must be stored in a single Power BI workspace. Report data must be current as of 7 AM Pacific Time each day. The reports must provide fast response times when users interact with a visualization. The data model must minimize the size of the dataset as much as possible, while meeting the report requirements and the technical requirements. Requirements. Security Requirements Access to the reports must be granted to Azure Active Directory (Azure AD) security groups only. An Azure AD security group exists for each department. The sales department must be able to perform the following tasks in Power BI: Create, edit, and delete content in the reports. Manage permissions for workspaces, datasets, and reports. Publish, unpublish, update, and change the permissions for an app. Assign Azure AD groups role-based access to the reports workspace. Users in the sales department must be able to access only the data of the sales region to which they are assigned in the Sales Employees table. Power BI has the following row-level security (RLS) Table filter DAX expression for the Sales Employees table. [EmailAddress] = USERNAME() RLS will be applied only to the sales department users. Users in all other departments must be able to view all the data. You need to create the semantic model. Which storage mode should you use for the tables in the semantic model? https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 34/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics A. DirectQuery B. Dual C. Import D. live connection Correct Answer: B Community vote distribution B (60%) C (40%) Question #33 Topic 1 HOTSPOT - You have a Power BI semantic model that contains the data sources shown in the following table. You need to configure the privacy level s of the data sources. What should you configure for each data source? To answer, select the appropriate options in the answer area. NOTE: Each correct answer is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 35/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #34 Topic 1 You plan to use Power BI Desktop to create a bug tracking dashboard that will pull data from Analytics in Azure DevOps. From Power BI Desktop, you need to configure a data connector to authenticate to Azure DevOps. The solution must meet the following requirements: Use Analytics views. Filter data from the cloud. Which connector should you use? A. OData queries B. Azure DevOps (Boards only) C. Azure DevOps Server (Boards only) D. OData Feed Correct Answer: D Community vote distribution D (52%) A (29%) B (19%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 36/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #35 Topic 1 HOTSPOT - You use Power Query Editor to preview the data shown in the following exhibit. You confirm that the data will always start on row 3, and row 3 will always contain the column names. How should you shape the query? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Correct Answer: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 37/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #36 Topic 1 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have a data source that contains a column. The column contains case sensitive data. You have a Power BI semantic model in DirectQuery mode. You connect to the model and discover that it contains undefined values and errors. You need to resolve the issue. Solution: You implicitly convert the values into the required type. Does this meet the goal? A. Yes B. No Correct Answer: B Community vote distribution B (100%) Question #37 Topic 1 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have a data source that contains a column. The column contains case sensitive data. You have a Power BI semantic model in DirectQuery mode. You connect to the model and discover that it contains undefined values and errors. You need to resolve the issue. Solution: You change the semantic model mode. Does this meet the goal? A. Yes B. No Correct Answer: B Community vote distribution B (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 38/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #38 Topic 1 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have a data source that contains a column. The column contains case sensitive data. You have a Power BI semantic model in DirectQuery mode. You connect to the model and discover that it contains undefined values and errors. You need to resolve the issue. Solution: You normalize casing in the source query or Power Query Editor. Does this meet the goal? A. Yes B. No Correct Answer: A Community vote distribution A (100%) Question #39 Topic 1 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have a data source that contains a column. The column contains case sensitive data. You have a Power BI semantic model in DirectQuery mode. You connect to the model and discover that it contains undefined values and errors. You need to resolve the issue. Solution: You add an index key and normalize casing in the data source. Does this meet the goal? A. Yes B. No Correct Answer: B Community vote distribution B (50%) A (50%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 39/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #40 Topic 1 You have a Microsoft Excel file in a Microsoft OneDrive folder. The file must be imported to a Power BI semantic model. You need to ensure that the semantic model can be refreshed in PowerBi.com. Which two connectors can you use to connect to the file? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Web B. Excel Workbook C. Folder D. Text/CSV E. SharePoint folder Correct Answer: AE Community vote distribution AE (80%) BE (20%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 40/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #41 Topic 1 You use Power Query Editor to preview a column named Date as shown in the following exhibit. You need to change the Date column to contain only the year. The solution must minimize administrative effort. What should you do? A. Split the column by delimiter. B. Split the column by number of characters. C. Extract the text after the delimiter. D. Transform the column to contain only the year. Correct Answer: D Community vote distribution D (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 41/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #42 Topic 1 HOTSPOT - You are designing the data model for a Power BI semantic model. You have the following tables in the star schema. Which table is the fact table of the star schema, and which column in the Patient table is the surrogate key of the star schema? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 42/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Topic 2 - Question Set 2 Question #1 Topic 2 You are creating a report in Power BI Desktop. You load a data extract that includes a free text field named coll. You need to analyze the frequency distribution of the string lengths in col1. The solution must not affect the size of the model. What should you do? A. In the report, add a DAX calculated column that calculates the length of col1 B. In the report, add a DAX function that calculates the average length of col1 C. From Power Query Editor, add a column that calculates the length of col1 D. From Power Query Editor, change the distribution for the Column profile to group by length for col1 Correct Answer: D Community vote distribution D (91%) 6% Question #2 Topic 2 You have a collection of reports for the HR department of your company. The datasets use row-level security (RLS). The company has multiple sales regions. Each sales region has an HR manager. You need to ensure that the HR managers can interact with the data from their region only. The HR managers must be prevented from changing the layout of the reports. How should you provision access to the reports for the HR managers? A. Publish the reports in an app and grant the HR managers access permission. B. Create a new workspace, copy the datasets and reports, and add the HR managers as members of the workspace. C. Publish the reports to a different workspace other than the one hosting the datasets. D. Add the HR managers as members of the existing workspace that hosts the reports and the datasets. Correct Answer: A Community vote distribution A (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 43/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #3 Topic 2 You need to provide a user with the ability to add members to a workspace. The solution must use the principle of least privilege. Which role should you assign to the user? A. Viewer B. Admin C. Contributor D. Member Correct Answer: D Community vote distribution D (100%) Question #4 Topic 2 You have a Power BI query named Sales that imports the columns shown in the following table. Users only use the date part of the Sales_Date field. Only rows with a Status of Finished are used in analysis. You need to reduce the load times of the query without affecting the analysis. Which two actions achieve this goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Remove the rows in which Sales[Status] has a value of Canceled. B. Remove Sales[Sales_Date]. C. Change the data type of Sale[Delivery_Time] to Integer. D. Split Sales[Sale_Date] into separate date and time columns. E. Remove Sales[Canceled Date]. Correct Answer: AE Community vote distribution AE (71%) AD (29%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 44/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #5 Topic 2 You build a report to analyze customer transactions from a database that contains the tables shown in the following table. You import the tables. Which relationship should you use to link the tables? A. one-to-many from Transaction to Customer B. one-to-one between Customer and Transaction C. many-to-many between Customer and Transaction D. one-to-many from Customer to Transaction Correct Answer: D Community vote distribution D (100%) Question #6 Topic 2 You have a custom connector that returns ID, From, To, Subject, Body, and Has Attachments for every email sent during the past year. More than 10 million records are returned. You build a report analyzing the internal networks of employees based on whom they send emails to. You need to prevent report recipients from reading the analyzed emails. The solution must minimize the model size. What should you do? A. From Model view, set the Subject and Body columns to Hidden. B. Remove the Subject and Body columns during the import. C. Implement row-level security (RLS) so that the report recipients can only see results based on the emails they sent. Correct Answer: B Community vote distribution B (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 45/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #7 Topic 2 HOTSPOT - You create a Power BI dataset that contains the table shown in the following exhibit. You need to make the table available as an organizational data type in Microsoft Excel. How should you configure the properties of the table? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 46/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: Cost Center - The Row label field value is used in Excel so users can easily identify the row. It appears as the cell value for a linked cell, in the Data Selector pane, and in the Information card. Box 2: ID - The Key column field value provides the unique ID for the row. This value enables Excel to link a cell to a specific row in the table. Box 3: Yes - In the Data Types Gallery in Excel, your users can find data from featured tables in your Power BI datasets. Reference: https://docs.microsoft.com/en-us/power-bi/collaborate-share/service-create-excel-featured-tables https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 47/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #8 Topic 2 You have the Power BI model shown in the following exhibit. A manager can represent only a single country. You need to use row-level security (RLS) to meet the following requirements: ✑ The managers must only see the data of their respective country. ✑ The number of RLS roles must be minimized. Which two actions should you perform? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Create a single role that filters Country[Manager_Email] by using the USERNAME DAX function. B. Create a single role that filters Country[Manager_Email] by using the USEROBJECTID DAX function. C. For the relationship between Purchase Detail and Purchase, select Apply security filter in both directions. D. Create one role for each country. E. For the relationship between Purchase and Purchase Detail, change the Cross filter direction to Single. Correct Answer: AC Community vote distribution AC (69%) AD (24%) 5% https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 48/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #9 Topic 2 HOTSPOT - You have a Power BI imported dataset that contains the data model shown in the following exhibit. Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 49/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: Assume Referential Integrity When connecting to a data source using DirectQuery, you can use the Assume Referential Integrity selection to enable running more efficient queries against your data source. This feature has a few requirements of the underlying data, and it is only available when using DirectQuery. Note: The following requirements are necessary for Assume referential integrity to work properly: Data in the From column in the relationship is never Null or blank For each value in the From column, there is a corresponding value in the To column Box 2: Star schema - Star schema is a mature modeling approach widely adopted by relational data warehouses. It requires modelers to classify their model tables as either dimension or fact. Generally, dimension tables contain a relatively small number of rows. Fact tables, on the other hand, can contain a very large number of rows and continue to grow over time. Example: Reference: https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-assume-referential-integrity https://docs.microsoft.com/en-us/power- bi/guidance/star-schema https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 50/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #10 Topic 2 HOTSPOT - You have a Power BI model that contains a table named Sales and a related date table. Sales contains a measure named Total Sales. You need to create a measure that calculates the total sales from the equivalent month of the previous year. How should you complete the calculation? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 51/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: CALCULATE - Box 2: PARALLELPERIOD - PARALLELPERIOD returns a table that contains a column of dates that represents a period parallel to the dates in the specified dates column, in the current context, with the dates shifted a number of intervals either forward in time or back in time. Syntax: PARALLELPERIOD(,,) dates: A column that contains dates. interval: The interval by which to shift the dates. The value for interval can be one of the following: year, quarter, month. Incorrect: SAMEPERIODLASTYEAR returns a table that contains a column of dates shifted one year back in time from the dates in the specified dates column, in the current context. Syntax: SAMEPERIODLASTYEAR() DATESMTD returns a table that contains a column of the dates for the month to date, in the current context. Syntax: DATESMTD() Box 3: 'DATE' [Month] Reference: https://docs.microsoft.com/en-us/dax/parallelperiod-function-dax https://docs.microsoft.com/en-us/dax/sameperiodlastyear-function-dax https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 52/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #11 Topic 2 DRAG DROP - You plan to create a report that will display sales data from the last year for multiple regions. You need to restrict access to individual rows of the data on a per region-basis by using roles. Which four 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. Select and Place: Correct Answer: You can define roles and rules within Power BI Desktop. When you publish to Power BI, it also publishes the role definitions. To define security roles, follow these steps. 1. Import data into your Power BI Desktop report (Step 1) 2. From the Modeling tab, select Manage Roles. 3. From the Manage roles window, select Create. (Step 2) 4. Under Roles, provide a name for the role. 5. Under Tables, select the table to which you want to apply a DAX rule. 6. In the Table filter DAX expression box, enter the DAX expressions. This expression returns a value of true or false. For example: [Entity ID] = ‫ג‬€Value‫ג‬€(Step 3) 7. After you've created the DAX expression, select the checkmark above the expression box to validate the expression. 8. Select Save. Step 3: Assign Users to the role. You can't assign users to a role within Power BI Desktop. You assign them in the Power BI service. After you've created your roles, test the results of the roles within Power BI Desktop. Step 4: Publish the report. Now that you're done validating the roles in Power BI Desktop, go ahead and publish your report to the Power BI service. Reference: https://docs.microsoft.com/en-us/power-bi/enterprise/service-admin-rls https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 53/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #12 Topic 2 DRAG DROP - You create a data model in Power BI. Report developers and users provide feedback that the data model is too complex. The model contains the following tables. The model has the following relationships: ✑ There is a one-to-one relationship between Sales_Region and Region_Manager. ✑ There are more records in Manager than in Region_Manager, but every record in Region_Manager has a corresponding record in Manager. ✑ There are more records in Sales_Manager than in Sales_Region, but every record in Sales_Region has a corresponding record in Sales_Manager. You need to denormalize the model into a single table. Only managers who are associated to a sales region must be included in the reports. 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. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. Select and Place: Correct Answer: Step 1: Merge [Sales_Region] and [Sales_Manager] by using an inner join. Inner Join: Returns the rows present in both Left and right table only if there is a match. Otherwise, it returns zero records. Note: Sales_Region and Sales_manager There is a one-to-one relationship between Sales_Region and Region_Manager. There are more records in Sales_Manager than in Sales_Region, but every record in Sales_Region has a corresponding record in Sales_Manager. Step 2: Merge [Region_Manager] and [Manager] by using inner join. Only managers who are associated to a sales region must be included in the reports. Note: Region_Manager and Manager. There are more records in Manager than in Region_Manager, but every record in Region_Manager has a corresponding record in Manager. https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 54/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Step 3: Merge [Sales_region] and [Region_Manager] by using a right join as new query named [Sales_region_and_Region_Manager] Reference: https://www.tutorialgateway.org/joins-in-power-bi/ Question #13 Topic 2 You have a Microsoft Power BI report. The size of PBIX file is 550 MB. The report is accessed by using an App workspace in shared capacity of powerbi.com. The report uses an imported dataset that contains one fact table. The fact table contains 12 million rows. The dataset is scheduled to refresh twice a day at 08:00 and 17:00. The report is a single page that contains 15 AppSource visuals and 10 default visuals. Users say that the report is slow to load the visuals when they access and interact with the report. You need to recommend a solution to improve the performance of the report. What should you recommend? A. Change any DAX measures to use iterator functions. B. Enable visual interactions. C. Replace the default visuals with AppSource visuals. D. Split the visuals onto multiple pages. Correct Answer: D Community vote distribution D (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 55/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #14 Topic 2 HOTSPOT - You are creating a Microsoft Power BI imported data model to perform basket analysis. The goal of the analysis is to identify which products are usually bought together in the same transaction across and within sales territories. You import a fact table named Sales as shown in the exhibit. (Click the Exhibit tab.) The related dimension tables are imported into the model. Sales contains the data shown in the following table. You are evaluating how to optimize the model. For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 56/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: Yes - Those two columns not need in the analysis. Box 2: No - Can remove the surrogate key OrderDateKey from the analysis. Box 3: No - Tax charged not relevant for the analysis. Question #15 Topic 2 You have a Microsoft Power BI data model that contains three tables named Orders, Date, and City. There is a one-to-many relationship between Date and Orders and between City and Orders. The model contains two row-level security (RLS) roles named Role1 and Role2. Role1 contains the following filter. City[State Province] = "Kentucky" Role2 contains the following filter. Date[Calendar Year] = 2020 - If a user is a member of both Role1 and Role2, what data will they see in a report that uses the model? A. The user will see data for which the State Province value is Kentucky or where the Calendar Year is 2020. B. The user will receive an error and will not be able to see the data in the report. C. The user will only see data for which the State Province value is Kentucky. D. The user will only see data for which the State Province value is Kentucky and the Calendar Year is 2020. Correct Answer: A Community vote distribution A (88%) 12% https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 57/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #16 Topic 2 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are modeling data by using Microsoft Power BI. Part of the data model is a large Microsoft SQL Server table named Order that has more than 100 million records. During the development process, you need to import a sample of the data from the Order table. Solution: From Power Query Editor, you import the table and then add a filter step to the query. Does this meet the goal? A. Yes B. No Correct Answer: B Community vote distribution B (55%) A (45%) Question #17 Topic 2 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are modeling data by using Microsoft Power BI. Part of the data model is a large Microsoft SQL Server table named Order that has more than 100 million records. During the development process, you need to import a sample of the data from the Order table. Solution: You write a DAX expression that uses the FILTER function. Does this meet the goal? A. Yes B. No Correct Answer: B Community vote distribution B (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 58/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #18 Topic 2 Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are modeling data by using Microsoft Power BI. Part of the data model is a large Microsoft SQL Server table named Order that has more than 100 million records. During the development process, you need to import a sample of the data from the Order table. Solution: You add a WHERE clause to the SQL statement. Does this meet the goal? A. Yes B. No Correct Answer: A Community vote distribution A (100%) https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 59/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #19 Topic 2 DRAG DROP - You are preparing a financial report in Power BI. You connect to the data stored in a Microsoft Excel spreadsheet by using Power Query Editor as shown in the following exhibit. You need to prepare the data to support the following: ✑ Visualizations that include all measures in the data over time ✑ Year-over-year calculations for all the measures Which four 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. Select and Place: Correct Answer: Reference: https://docs.microsoft.com/en-us/power-query/unpivot-column https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 60/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #20 Topic 2 HOTSPOT - You are creating an analytics report that will consume data from the tables shown in the following table. There is a relationship between the tables. There are no reporting requirements on employee_id and employee_photo. You need to optimize the data model. What should you configure for employee_id and employee_photo? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area: https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 61/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Correct Answer: Box 1: Hide - Need in the relation, so cannot delete it. Box 2: Delete - Reference: https://community.powerbi.com/t5/Desktop/How-to-Hide-a-Column-in-power-Bi/m-p/414470 https://www.examtopics.com/exams/microsoft/pl-300/custom-view/ 62/339 12/10/24, 3:55 PM PL-300 Exam - Free Actual Q&As, Page 1 | ExamTopics Question #21 Topic 2 HOTSPOT - You plan to create Power BI dataset to analyze attendance at a school. Data will come from two separate views named View1 and View2 in an Azure SQL database. View1 contains the columns shown in the following table. View2 contains the columns shown in the following table. The views can be related based on the Class ID column. Class ID is the unique identifier for the specified class, period, teacher, and school year. For example, the same class can be taught by the same teacher during two different periods, but the class will have a different class ID. You need to design a star schema data model by using the data in both views. The solution must facilitate the following analysis: ✑ The count of classes that occur by

Use Quizgecko on...
Browser
Browser