练习 60 道原创 Power BI PL-300 题,覆盖数据准备、数据建模、DAX、可视化与报表,以及部署与共享,每题附答案与解析。
等级: Power BI PL-300难度: intermediate60 道题60 分钟
选择练习模式,回答每道 Power BI PL-300 题,然后查看解析。错题会保存在本机供复习。
连续学习: 0 天仅保存在此设备
进度0 / 60
剩余时间: 00:00
还没有保存的错题。
没有符合条件的题目。
题目 1
What is Power Query used for in Power BI?
Power Query is the data preparation tool in Power BI. It imports data and applies cleaning and transformation steps before the data is loaded into the model. DAX, layouts, and subscriptions are different features.
题目 2
What does a data refresh do?
A data refresh pulls the latest values from the original data sources into Power BI. It does not change themes, delete reports, or move workspaces.
题目 3
Where do you transform data in Power BI Desktop?
Power Query Editor is where you clean and transform data before loading it into the model. DAX Studio is an external tool, while Report and Model views are used for other tasks.
题目 4
What does Promote Headers do in Power Query?
Promote Headers makes the first row of a table the column names. Sorting, removing blanks, and creating tables are separate Power Query actions.
题目 5
Why should you set the correct data type for a column?
Correct data types allow Power BI to calculate, sort, and visualize values accurately. Data types do not control titles, file size, or dataset names.
题目 6
What does Remove Duplicates do?
Remove Duplicates keeps only unique rows based on the selected columns. It does not delete the table or all columns, and it is not a sorting operation.
题目 7
What is a query parameter in Power Query?
A query parameter is a named value you can reuse in M code, such as a file path or filter value. It is not a relationship, bookmark, or refresh schedule.
题目 8
Which data source can Power Query connect to?
Power Query connects to many sources, including Excel, SQL Server, text files, and web services. It is not limited to a single source type.
题目 9
What does Append Queries do?
Append Queries stacks rows from tables that have the same structure. Joining by key columns is called Merge Queries, not append.
题目 10
What does Merge Queries do?
Merge Queries joins tables based on matching key columns, like a SQL join. Appending stacks rows instead, and report pages are not merged by this feature.
题目 11
What is a dataflow in Power BI?
A dataflow contains reusable data transformation logic hosted in Power BI. Reports and datasets can use it as a shared source, which reduces duplicated preparation work.
题目 12
Which feature schedules automatic dataset updates in the Power BI service?
Scheduled refresh updates datasets from their sources on a schedule. Auto summarize and quick insights are modeling and analysis features, not refresh schedules.
题目 13
What does an on-premises data gateway do?
A data gateway securely transfers data between Power BI cloud services and on-premises sources. It is not an internet accelerator or report generator.
题目 14
What language does Power Query use for transformations?
Power Query uses the M formula language. DAX is used for measures in the data model, SQL queries databases, and Python is a general programming language.
题目 15
Power Query can combine data from multiple sources.
This statement is true. Power Query can import and combine data from multiple sources using append, merge, and custom transformation steps.
题目 16
The Power Query formula language is called ___.
Power Query uses the M formula language for transformation steps. M expressions appear in the Advanced Editor and define how data is loaded and shaped.
题目 17
What is a star schema in Power BI?
A star schema has a central fact table linked to dimension tables. This design reduces redundancy and improves model performance. It is not a flat table or security role.
题目 18
What does a fact table usually contain?
A fact table stores numeric values and business transactions that can be aggregated. Descriptive labels belong in dimension tables.
题目 19
What does a dimension table usually contain?
Dimension tables provide descriptive attributes like product, customer, or date labels. Fact tables hold numeric transactions and measures.
题目 20
What is a relationship in Power BI?
A relationship links tables by matching columns, usually keys, so filters and calculations flow between them. Bookmarks, schedules, and tooltips are different features.
题目 21
What is a one-to-many relationship?
A one-to-many relationship means one value in the primary table can be referenced by many rows in the related table. This is the most common relationship in Power BI models.
题目 22
What does cross filter direction control?
Cross filter direction determines whether filters flow from one table to the other, both ways, or not at all. It does not control page scrolling, refresh, or bookmarks.
题目 23
What is a calculated column?
A calculated column is computed for every row and stored in the table. Measures are evaluated at query time, and filters are separate from calculated columns.
题目 24
What is a measure?
A measure is a DAX calculation that runs when the report is queried and responds to filters. It is not stored as a column and is not a data source.
题目 25
Which DAX function filters a table?
FILTER returns a table based on a condition. SUM aggregates values, FORMAT changes text, and USERNAME returns the current user name.
题目 26
Which DAX function changes filter context?
CALCULATE modifies the filter context of a measure. COUNTROWS counts rows, RELATED fetches a related value, and VALUES returns distinct values.
题目 27
Which DAX function adds up the values in a column?
SUM adds numeric values in a column. COUNTA counts non-empty values, MAX returns the largest value, and DISTINCT returns unique values.
题目 28
Which DAX function sums an expression row by row?
SUMX iterates over rows and sums an expression for each row. SUM works on a single column, ADDCOLUMNS adds columns, and CONCATENATE joins text.
题目 29
What does ALL do in DAX?
ALL removes filters so calculations can ignore the current filter context. It is commonly used inside CALCULATE for percentages and totals.
题目 30
Which DAX function counts the rows in a table?
COUNTROWS returns the number of rows in a table. SUM adds values, CALCULATE changes filters, and FIRSTNONBLANK returns the first non-blank value.
题目 31
What does RELATED do in DAX?
RELATED fetches a value from a related table based on the relationship. It does not create relationships, refresh data, or filter visuals directly.
题目 32
Which type of DAX function compares values across time periods?
Time intelligence functions such as SAMEPERIODLASTYEAR and DATEADD compare values across periods. Text, filter, and math functions serve other purposes.
题目 33
Measures are physically stored in the data model table.
This statement is false. Measures are calculated at query time and are not physically stored in the table. Calculated columns are stored, but measures are not.
题目 34
CALCULATE can modify the filter context of a measure.
This statement is true. CALCULATE changes the filter context by adding or removing filters before evaluating an expression. It is one of the most important DAX functions.
题目 35
The DAX function CALCULATE changes the ___.
CALCULATE changes the filter context of an expression. It can add, remove, or replace filters and is essential for advanced DAX measures.
题目 36
What is a hierarchy in Power BI?
A hierarchy defines drill-down levels such as year, quarter, and month. It lets users navigate from a summary to more detail. It is not security, refresh, or a bookmark.
题目 37
What is row-level security?
Row-level security filters data so different users see only allowed rows. It does not hide reports, encrypt files, or block refresh.
题目 38
What is a role in row-level security?
A role contains row filters and is assigned to users or groups. RLS roles control what data each user can view in a report.
题目 39
Why does a star schema improve model performance?
A star schema reduces redundancy and makes filters flow clearly from dimensions to facts. This improves calculation speed and model maintainability.
题目 40
What is a composite model?
A composite model can include multiple data sources and storage modes such as Import and DirectQuery in one model. It is not limited to one file or source.
题目 41
What is a slicer in Power BI?
A slicer is an interactive visual filter on a report page. Users select values to filter other visuals. It is not a page, schedule, or measure.
题目 42
What is a bookmark?
A bookmark captures the current state of a report page, including filters and visibility. It is used to create story-like navigation in reports.
题目 43
What is drillthrough in Power BI?
Drillthrough lets users click a value and open a detail page focused on that entity. It is not resizing, exporting, or changing themes.
题目 44
What is a tooltip page?
A tooltip page appears when a user hovers over a visual and can show extra context. It is not a print layout, source, or security role.
题目 45
Which visual is best for comparing values across categories?
Bar and column charts compare values across categories clearly. Cards show single values, slicers filter, and Q&A answers natural language questions.
题目 46
What is a matrix visual?
A matrix displays values in rows and columns and can include subtotals and grand totals. A card shows one number, and a map displays geographic data.
题目 47
What does a card visual show?
A card visual displays one value, such as total sales. Tables, maps, and bookmark panes are different elements.
题目 48
What is a KPI visual used for?
A KPI visual compares a measure to a target and shows progress. It is not a filter, page, or source editor.
题目 49
What is a report page?
A report page is a canvas where visuals are arranged. Reports can have multiple pages, each with its own layout and visuals.
题目 50
What is a dashboard in the Power BI service?
A dashboard is a single canvas containing tiles pinned from reports or created directly in the service. It is not a paginated report, dataflow, or parameter.
题目 51
What is a workspace in Power BI?
A workspace organizes content such as reports, datasets, and dashboards for a team. It is not a visual, gateway, or formula.
题目 52
What is a Power BI app?
A Power BI app packages reports and dashboards so content can be shared with a broad audience. It is not hardware, a source, or a query step.
题目 53
What is a subscription in Power BI?
A subscription sends report or dashboard content by email on a schedule. It is not a license, model, or bookmark.
题目 54
What does sharing a report allow?
Sharing gives other users access to a report in the service. It does not let them edit sources, change Power Query, or install software.
题目 55
What is a paginated report used for?
Paginated reports are designed for fixed, printable layouts with pixel-perfect formatting. Interactive dashboards, Q&A, and RLS are different features.
题目 56
You can pin visuals from reports to a dashboard.
This statement is true. Users can pin report visuals to dashboards so the tiles appear on a single canvas in the Power BI service.
题目 57
Mobile layouts are configured separately in the report designer.
This statement is true. Power BI provides a mobile layout editor where you arrange visuals for phones separately from the desktop layout.
题目 58
What does Performance Analyzer do?
Performance Analyzer records load time and query time for report visuals. It helps identify slow visuals. It is not a theme, source, or subscription tool.
题目 59
Which Power BI feature lets users ask questions in natural language?
Q&A lets users type natural language questions and get visual answers. Bookmarks save states, drillthrough navigates details, and Performance Analyzer measures speed.
题目 60
How can a user export data from a visual?
Users can export underlying visual data to Excel or another format from the report. Dataflows, gateways, and bookmarks do not export visual data.