The answer is that the flow lacks a 'Wait for an approval' action, so it does not pause for the manager's response before running the condition. Without this explicit pause, Power Automate proceeds immediately to the condition step, evaluating the approval variable in its initial, unapproved state rather than the actual decision. This is why the Power Automate approval flow is not updating status—the condition never sees the approval outcome. On the PL-900 exam, this tests your understanding of flow execution order and the necessity of synchronous approval handling; a common trap is assuming the 'Start and wait for an approval' action is optional or that the condition will automatically wait. Remember the memory tip: "No wait, no update"—if the flow doesn't explicitly wait for the approval response, the status will never change based on the manager's decision.
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. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. 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.
{
"flows": [
{
"name": "Send approval email",
"trigger": "When an item is created",
"actions": [
{
"type": "Send an email (V2)",
"inputs": {
"to": "manager@contoso.com",
"subject": "Approval needed",
"body": "Please approve the new item."
}
},
{
"type": "Condition",
"expression": "@equals(triggerOutputs()?['body/status'], 'Approved')",
"actions": {
"true": [
{
"type": "Update item",
"inputs": {
"status": "Approved"
}
}
]
}
}
]
}
]
}
Refer to the exhibit. A developer created a Power Automate flow based on the JSON. The flow is not updating the item status even when the manager approves. What is the most likely reason?
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.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The flow does not wait for the approval response before running the condition.
Option B is correct because the flow lacks a 'Wait for an approval' action or equivalent configuration. Without this, the flow proceeds immediately to the condition step before the manager has responded, so the condition evaluates based on the initial (unapproved) state of the approval variable, not the actual response. Power Automate requires an explicit 'Wait for an approval' action to pause execution until the approval decision is made.
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 flow does not wait for the approval response before running the condition.
Why this is correct
Email send is not a synchronous approval; need an approval action.
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 update item action is missing.
Why it's wrong here
Update item action exists in the true branch.
✗
The condition expression has incorrect syntax.
Why it's wrong here
Syntax appears correct.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume the approval action inherently pauses the flow, but Power Automate requires an explicit wait action to synchronize execution with the approval response.
Detailed technical explanation
How to think about this question
Under the hood, Power Automate approval actions (e.g., 'Start and wait for an approval') use a synchronous pattern that blocks the flow until the approval completes, returning a response object with properties like 'outcome' (Approve/Reject). Without this wait, the flow treats the approval as an asynchronous trigger, and the condition step reads the initial empty or default state of the approval variable, causing the update to never execute. In real-world scenarios, this often happens when developers reuse a 'Create an approval' action without the corresponding 'Wait for an approval' step, mistakenly assuming the flow will pause automatically.
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: The flow does not wait for the approval response before running the condition. — Option B is correct because the flow lacks a 'Wait for an approval' action or equivalent configuration. Without this, the flow proceeds immediately to the condition step before the manager has responded, so the condition evaluates based on the initial (unapproved) state of the approval variable, not the actual response. Power Automate requires an explicit 'Wait for an approval' action to pause execution until the approval decision is made.
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.
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 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.