PL-900 Practice Question: Describe the business value of Microsoft Power Platform
This PL-900 practice question tests your understanding of describe the business value of microsoft power platform. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```kusto
SalesSummary
| summarize TotalSales = sum(SalesAmount) by Region, ProductCategory
| where Region == "North America"
| order by TotalSales desc
```
A Power BI report uses the KQL query shown. What is the purpose of this query?
Refer to the exhibit.
```kusto
SalesSummary
| summarize TotalSales = sum(SalesAmount) by Region, ProductCategory
| where Region == "North America"
| order by TotalSales desc
```
A
To list all sales transactions for North America
Why wrong: The query aggregates data, not lists individual transactions.
B
To show total sales per product category for North America in descending order
The query sums sales by Region and ProductCategory, filters for North America, and orders by total sales descending.
C
To calculate average sales amount by region
Why wrong: The query calculates sum, not average.
D
To filter sales data by product category
Why wrong: The query groups by product category but does not filter by it.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
To show total sales per product category for North America in descending order
The KQL query uses the `summarize` operator to group sales data by `ProductCategory` and calculate the total sales amount using `sum(SalesAmount)`. The `where` clause filters for `Region == 'North America'`, and `order by` sorts the aggregated results in descending order. This produces a list of product categories with their total sales for North America, sorted from highest to lowest.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
To list all sales transactions for North America
Why it's wrong here
The query aggregates data, not lists individual transactions.
✓
To show total sales per product category for North America in descending order
Why this is correct
The query sums sales by Region and ProductCategory, filters for North America, and orders by total sales descending.
Related concept
Read the scenario before looking for a memorised answer.
✗
To calculate average sales amount by region
Why it's wrong here
The query calculates sum, not average.
✗
To filter sales data by product category
Why it's wrong here
The query groups by product category but does not filter by it.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may confuse the `sum()` aggregation with listing individual transactions (Option A) or calculating averages (Option C), overlooking the specific combination of `summarize`, `where`, and `order by` that defines the query's purpose.
Detailed technical explanation
How to think about this question
KQL's `summarize` operator groups rows by the specified column(s) and applies an aggregation function (e.g., `sum()`, `avg()`, `count()`) to create a new table. The `order by` operator sorts the result set by one or more columns, with `desc` indicating descending order. In Power BI, KQL queries are often used in DirectQuery mode to push aggregation and filtering to the data source, improving performance for large datasets.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Describe the business value of Microsoft Power Platform — This question tests Describe the business value of Microsoft Power Platform — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: To show total sales per product category for North America in descending order — The KQL query uses the `summarize` operator to group sales data by `ProductCategory` and calculate the total sales amount using `sum(SalesAmount)`. The `where` clause filters for `Region == 'North America'`, and `order by` sorts the aggregated results in descending order. This produces a list of product categories with their total sales for North America, sorted from highest to lowest.
What should I do if I get this PL-900 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This PL-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PL-900 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.