Question 964 of 976

Quick Answer

The answer is that this flow creates a lead in Dataverse from an email using Power Automate. This is correct because the JSON definition reveals a trigger set to “When a new email arrives” in the inbox, followed by an action that creates a new lead record in Dataverse. The technical concept here is the event-driven automation of a lead creation process: the flow listens for an incoming email event, extracts relevant data, and automatically writes a lead row into the Dataverse table without manual input. On the PL-900 exam, this scenario tests your ability to read a flow definition and distinguish between triggers (like email arrival) and actions (like record creation). A common trap is confusing the trigger with a manual button or a scheduled recurrence; remember that “When a new email arrives” is an automatic, event-based trigger. For a memory tip, think “Email in, Lead out” — the flow’s trigger is the inbox arrival, and the action is the Dataverse lead creation.

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

{
  "triggers": {
    "When_a_new_email_arrives": {
      "type": "ApiConnection",
      "inputs": {
        "host": {
          "connectionName": "shared_office365"
        },
        "operationId": "OnNewEmail",
        "parameters": {
          "folderPath": "Inbox",
          "importance": "Any",
          "includeAttachments": true
        }
      }
    }
  },
  "actions": {
    "Create_item": {
      "type": "ApiConnection",
      "inputs": {
        "host": {
          "connectionName": "shared_commondataserviceforapps"
        },
        "operationId": "CreateItem",
        "parameters": {
          "entityName": "Leads",
          "item/email": "@{triggerOutputs()?['body/from']}"
        }
      }
    }
  }
}

Refer to the exhibit. You see a Power Automate flow definition in JSON. What does this flow do?

Question 1mediummultiple choice
Full question →

Exhibit

Refer to the exhibit.

{
  "triggers": {
    "When_a_new_email_arrives": {
      "type": "ApiConnection",
      "inputs": {
        "host": {
          "connectionName": "shared_office365"
        },
        "operationId": "OnNewEmail",
        "parameters": {
          "folderPath": "Inbox",
          "importance": "Any",
          "includeAttachments": true
        }
      }
    }
  },
  "actions": {
    "Create_item": {
      "type": "ApiConnection",
      "inputs": {
        "host": {
          "connectionName": "shared_commondataserviceforapps"
        },
        "operationId": "CreateItem",
        "parameters": {
          "entityName": "Leads",
          "item/email": "@{triggerOutputs()?['body/from']}"
        }
      }
    }
  }
}

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

It creates a lead in Dataverse when a new email arrives in the inbox.

Option D is correct because the flow trigger is 'When a new email arrives' (inbox trigger), and the action is 'Create a new lead' in Dataverse. This means the flow automatically creates a lead record in Dataverse whenever a new email arrives in the specified inbox, without requiring any manual intervention.

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.

  • It updates a lead record when an email is received.

    Why it's wrong here

    The action is 'CreateItem', not update.

  • It deletes emails after creating leads.

    Why it's wrong here

    No delete action is present.

  • It sends an email when a new lead is created in Dataverse.

    Why it's wrong here

    The flow creates a lead from an email, not the reverse.

  • It creates a lead in Dataverse when a new email arrives in the inbox.

    Why this is correct

    The trigger is new email; the action creates a lead with the sender's email.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is confusing the trigger and action direction: candidates often misread the flow as 'when a lead is created, send an email' (Option C) instead of correctly identifying that an email arrival triggers the creation of a lead.

Detailed technical explanation

How to think about this question

The flow uses the 'When a new email arrives' trigger from the Office 365 Outlook connector, which monitors the inbox for incoming messages. The 'Create a new lead' action uses the Dataverse connector to insert a new lead record, mapping email fields (e.g., subject, sender) to lead attributes. This pattern is common for lead generation from inbound emails, but note that the trigger does not filter by email content unless additional conditions are added.

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.

Related practice questions

Related PL-900 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Identify foundational components of Power Platform practice questions

Practise PL-900 questions linked to Identify foundational components of Power Platform.

Demonstrate capabilities of Power BI practice questions

Practise PL-900 questions linked to Demonstrate capabilities of Power BI.

Describe complementary Microsoft Power Platform solutions practice questions

Practise PL-900 questions linked to Describe complementary Microsoft Power Platform solutions.

Demonstrate the capabilities of Power Automate practice questions

Practise PL-900 questions linked to Demonstrate the capabilities of Power Automate.

Describe the business value of Microsoft Power Platform practice questions

Practise PL-900 questions linked to Describe the business value of Microsoft Power Platform.

Manage the Microsoft Power Platform environment practice questions

Practise PL-900 questions linked to Manage the Microsoft Power Platform environment.

Identify foundational components of Microsoft Power Platform practice questions

Practise PL-900 questions linked to Identify foundational components of Microsoft Power Platform.

Demonstrate the capabilities of Power BI practice questions

Practise PL-900 questions linked to Demonstrate the capabilities of Power BI.

Demonstrate the capabilities of Power Apps practice questions

Practise PL-900 questions linked to Demonstrate the capabilities of Power Apps.

Demonstrate the capabilities of Microsoft Copilot Studio practice questions

Practise PL-900 questions linked to Demonstrate the capabilities of Microsoft Copilot Studio.

Demonstrate the capabilities of Power Pages practice questions

Practise PL-900 questions linked to Demonstrate the capabilities of Power Pages.

PL-900 fundamentals practice questions

Practise PL-900 questions linked to PL-900 fundamentals.

Practice this exam

Start a free PL-900 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PL-900 question test?

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: It creates a lead in Dataverse when a new email arrives in the inbox. — Option D is correct because the flow trigger is 'When a new email arrives' (inbox trigger), and the action is 'Create a new lead' in Dataverse. This means the flow automatically creates a lead record in Dataverse whenever a new email arrives in the specified inbox, without requiring any manual intervention.

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.

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 →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 24, 2026

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.

Loading comments…

Sign in to join the discussion.

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.