Courseiva
hardMultiple ChoiceObjective-mapped

MB-910 Practice Question: Refer to the exhibit

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?

⚠ Common exam trap

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.

Answer choices

Why each option matters

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.

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.

  • 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.

About these practice questions

This MB-910 question is part of Courseiva's 941-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.