The most likely cause is that the statuscode value is a string, but the condition expects a number. This is a classic Power Automate condition type mismatch in Dynamics 365, where the flow’s condition block performs strict type comparison. Even though the lead’s statuscode field displays as ‘New’ in the interface, the underlying value stored in the database is a string like '1', not the integer 1. Because Power Automate treats '1' and 1 as different data types, the condition evaluates to false, and the email action is skipped. On the MB-910 exam, this scenario tests your understanding of how Power Automate handles data types when integrating with Dynamics 365—a common trap is assuming that numeric-looking values are automatically treated as numbers. Remember the memory tip: “Quotes make it a string, not a number.” Always check whether your condition expects an integer or a text value to avoid silent failures in your flows.
MB-910 Practice Question: Describe shared features and Copilot capabilities
This MB-910 practice question tests your understanding of describe shared features and copilot capabilities. 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. You are troubleshooting a Power Automate flow that sends an email when a lead is created in Dynamics 365. The trigger condition is:
```
@equals(triggerOutputs()?['body/statuscode'], 1)
```
The flow runs but does not send the email for leads with status 'New'. What is the most likely cause?
Refer to the exhibit. The flow runs but does not send the email for leads with status 'New'. What is the most likely cause?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Refer to the exhibit. You are troubleshooting a Power Automate flow that sends an email when a lead is created in Dynamics 365. The trigger condition is:
```
@equals(triggerOutputs()?['body/statuscode'], 1)
```
The flow runs but does not send the email for leads with status 'New'. What is the most likely cause?
A
The statuscode value is a string, but the condition expects a number
statuscode is an integer; comparing to string '1' fails.
B
The flow is turned off
Why wrong: The flow runs, so it's not off.
C
The email action is misconfigured
Why wrong: The email action would work if condition passed.
D
The flow is not triggered for leads with status 'New'
Why wrong: The trigger fires for all leads, but the condition fails.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The statuscode value is a string, but the condition expects a number
The condition in the flow expects a number for the statuscode value, but the lead record's statuscode field is stored as a string (e.g., '1' instead of 1). Power Automate uses strict type comparison, so a string '1' does not equal the number 1, causing the condition to evaluate to false and the email action to be skipped.
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.
✓
The statuscode value is a string, but the condition expects a number
Why this is correct
statuscode is an integer; comparing to string '1' fails.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The flow is turned off
Why it's wrong here
The flow runs, so it's not off.
✗
The email action is misconfigured
Why it's wrong here
The email action would work if condition passed.
✗
The flow is not triggered for leads with status 'New'
Why it's wrong here
The trigger fires for all leads, but the condition fails.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Microsoft often tests the nuance that Power Automate conditions are type-sensitive, and candidates mistakenly assume that string and numeric comparisons are automatically coerced, leading them to overlook the type mismatch.
Detailed technical explanation
How to think about this question
Power Automate conditions use strict equality (===) for comparisons, meaning a string '1' is not equal to the integer 1. This is common when data comes from Dataverse, where statuscode values are stored as integers but may be passed as strings in certain trigger outputs (e.g., from a manual trigger or HTTP request). To fix this, use the 'int()' function to convert the string to a number before comparison, or compare against a string value like '1'.
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 shared features and Copilot capabilities — This question tests Describe shared features and Copilot capabilities — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The statuscode value is a string, but the condition expects a number — The condition in the flow expects a number for the statuscode value, but the lead record's statuscode field is stored as a string (e.g., '1' instead of 1). Power Automate uses strict type comparison, so a string '1' does not equal the number 1, causing the condition to evaluate to false and the email action to be skipped.
What should I do if I get this MB-910 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
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.