Courseiva

PL-900 Practice Question: Describe the business value of Microsoft Power Platform

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?

⚠ Common exam trap

Candidates often assume the approval action inherently pauses the flow, but Power Automate requires an explicit wait action to synchronize execution with the approval response.

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 flow does not wait for the approval response before running the condition.

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.

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 email is sent to the wrong recipient.

    Why it's wrong here

    Recipient is correct as per JSON.

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

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

About these practice questions

This PL-900 question is part of Courseiva's 904-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 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.