MB-920 Practice Question: Describe the core capabilities of the finance and operations apps
This MB-920 practice question tests your understanding of describe the core capabilities of the finance and operations apps. 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.
```sql
SELECT ItemId, SUM(Qty) AS TotalSold
FROM InventTrans
WHERE TransDate BETWEEN '2025-01-01' AND '2025-03-31'
GROUP BY ItemId
HAVING SUM(Qty) > 1000
ORDER BY TotalSold DESC;
```
You are analyzing inventory transactions. What does the SQL query return?
Refer to the exhibit.
```sql
SELECT ItemId, SUM(Qty) AS TotalSold
FROM InventTrans
WHERE TransDate BETWEEN '2025-01-01' AND '2025-03-31'
GROUP BY ItemId
HAVING SUM(Qty) > 1000
ORDER BY TotalSold DESC;
```
A
Items with total sold quantity greater than 1000 in the first quarter of 2025
The query filters by date, groups by item, and selects items with sum > 1000.
B
Items with the lowest sales quantity in the first quarter
Why wrong: It returns items with high sales (>1000), not lowest.
C
All items sold in the first quarter of 2025
Why wrong: The HAVING clause filters out items with quantity <= 1000.
D
The total quantity sold for each item in the first quarter
Why wrong: It returns only items with total quantity > 1000, not all items.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Items with total sold quantity greater than 1000 in the first quarter of 2025
The SQL query uses a WHERE clause to filter transactions for the first quarter of 2025 and a HAVING clause with SUM(Quantity) > 1000 to aggregate total sold quantity per item, returning only those items whose total sold quantity exceeds 1000. This matches option A, as the query specifically retrieves items with total sold quantity greater than 1000 in Q1 2025.
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.
✓
Items with total sold quantity greater than 1000 in the first quarter of 2025
Why this is correct
The query filters by date, groups by item, and selects items with sum > 1000.
Related concept
Read the scenario before looking for a memorised answer.
✗
Items with the lowest sales quantity in the first quarter
Why it's wrong here
It returns items with high sales (>1000), not lowest.
✗
All items sold in the first quarter of 2025
Why it's wrong here
The HAVING clause filters out items with quantity <= 1000.
✗
The total quantity sold for each item in the first quarter
Why it's wrong here
It returns only items with total quantity > 1000, not all items.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse HAVING with WHERE, mistakenly thinking the query returns all items sold in Q1 (option C) or the total quantity for each item (option D), without recognizing that HAVING filters aggregated results to only those exceeding the threshold.
Detailed technical explanation
How to think about this question
Under the hood, this query likely uses a GROUP BY on item ID and a HAVING clause to filter aggregated results, which is a common pattern in Dynamics 365 Finance and Operations for inventory analysis. In real-world scenarios, such queries help identify high-volume items for replenishment planning or ABC classification, where the threshold (e.g., 1000 units) is a business-defined parameter. The HAVING clause operates after aggregation, unlike WHERE which filters rows before grouping, a subtle but critical distinction.
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 core capabilities of the finance and operations apps — This question tests Describe the core capabilities of the finance and operations apps — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Items with total sold quantity greater than 1000 in the first quarter of 2025 — The SQL query uses a WHERE clause to filter transactions for the first quarter of 2025 and a HAVING clause with SUM(Quantity) > 1000 to aggregate total sold quantity per item, returning only those items whose total sold quantity exceeds 1000. This matches option A, as the query specifically retrieves items with total sold quantity greater than 1000 in Q1 2025.
What should I do if I get this MB-920 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 MB-920 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 MB-920 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.