The correct answer is that an email is sent to the manager requesting assignment. This outcome occurs because the Power Automate flow logic uses a condition that checks whether the lead source option set value equals 2, which corresponds to "Web." Since the lead created has a source of "Referral" (value 3), the condition evaluates as false, causing the flow to bypass the "Web" branch and execute the default action of emailing the manager. On the MB-910 exam, this question tests your ability to trace conditional logic in a Power Automate lead creation flow, a common scenario where candidates mistakenly assume the flow stops or assigns the lead directly. A frequent trap is confusing the "false" branch with an error—remember that a condition only triggers the true path; everything else falls through to the next step. Memory tip: think of it as "not Web equals email the manager," so any source other than 2 triggers the manager notification.
MB-910 Describe Dynamics 365 Sales Practice Question
This MB-910 practice question tests your understanding of describe dynamics 365 sales. 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.
Power Automate flow snippet:
{
"trigger": {
"type": "When a record is created",
"entity": "Lead"
},
"actions": [
{
"name": "Check if Lead Source is Web",
"condition": "@equals(triggerOutputs()?['body/leadsource'], 2)",
"ifTrue": [
{
"name": "Assign to Sales Team",
"assign": "SalesTeam@contoso.com"
}
],
"ifFalse": [
{
"name": "Send email to manager",
"sendEmail": {
"to": "manager@contoso.com",
"subject": "Lead assignment needed"
}
}
]
}
]
}
The exhibit shows a Power Automate flow triggered when a lead is created. The lead source option set values are: 1=Phone, 2=Web, 3=Referral. A lead with source 'Referral' is created. What will happen?
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
An email is sent to the manager requesting assignment
Option C is correct: The condition checks if leadsource equals 2 (Web). For Referral (3), the condition is false, so the email to manager is sent. Option A is wrong because it only happens for Web. Option B is wrong because no assignment happens. Option D is wrong because the flow does run.
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.
✓
An email is sent to the manager requesting assignment
Why this is correct
The false branch sends an email to the manager.
Related concept
Read the scenario before looking for a memorised answer.
✗
The lead is assigned to the manager
Why it's wrong here
No assignment action in the false branch.
✗
The flow does not run because the lead source is not Web
Why it's wrong here
The flow runs on any lead creation; the condition determines the branch.
✗
The lead is assigned to the sales team
Why it's wrong here
Assignment only happens if lead source is Web (2).
Common exam traps
Common exam trap: answer the scenario, not the keyword
Many certification questions include familiar terms but test a specific constraint. Read the exact wording before choosing an answer that is generally true but wrong for this case.
Detailed technical explanation
How to think about this question
This question should be treated as a scenario, not a definition check. Identify the problem, the constraint and the best action. Then compare each option against those facts.
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.
Use explanations to understand the rule behind the answer.
TExam Day Tips
→Underline the problem statement mentally.
→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 MB-910 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
Describe Dynamics 365 Sales — This question tests Describe Dynamics 365 Sales — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: An email is sent to the manager requesting assignment — Option C is correct: The condition checks if leadsource equals 2 (Web). For Referral (3), the condition is false, so the email to manager is sent. Option A is wrong because it only happens for Web. Option B is wrong because no assignment happens. Option D is wrong because the flow does run.
What should I do if I get this MB-910 question wrong?
Identify which MB-910 exam domain this question belongs to, then review the specific concept being tested. Practise related questions in that domain and focus on understanding why each wrong answer is tempting — not just why the correct answer is right.
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-910 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-910 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.