- A
Use an environment variable for the approver email
Environment variables simplify management and allow updates without editing the flow.
- B
Create a SharePoint list with the approver email and look it up in the flow
Why wrong: While possible, it adds unnecessary complexity compared to environment variables.
- C
Edit the flow to hardcode the new finance manager's email
Why wrong: Hardcoding is not a best practice; it requires flow editing for future changes.
- D
Use dynamic content from a Dataverse table
Why wrong: This is valid but overcomplicated for a single value; environment variables are simpler.
Quick Answer
The correct answer is to use an environment variable for the approver email. This is the recommended way to maintain Power Automate flow configuration because environment variables store values like email addresses separately from the flow’s logic, allowing you to update the variable once and have every flow that references it automatically pick up the change. On the PL-900 exam, this scenario tests your understanding of how to decouple configuration from code for easier maintenance—a common trap is trying to edit each flow individually or hardcoding the new manager’s email directly into the condition. Remember, environment variables act as a single source of truth for values that change frequently, such as approvers or thresholds. A helpful memory tip: think of an environment variable as a “smart sticky note” that every flow reads—change the note, and all flows instantly know the new information.
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. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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.
A manufacturing company uses Power Automate to approve purchase orders. The flow includes a condition that if the order amount exceeds $10,000, it requires approval from the finance manager; otherwise, it is auto-approved. Recently, the finance manager left the company, and the flow fails. The IT admin needs to update the flow to use a new finance manager. What is the recommended way to maintain this configuration?
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
Use an environment variable for the approver email
Environment variables in Power Automate allow you to store configuration values, such as an approver's email, separately from the flow logic. When the finance manager changes, you only need to update the environment variable value once, and all flows referencing it automatically use the new value. This decouples configuration from code, making maintenance easier and reducing the risk of errors.
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.
- ✓
Use an environment variable for the approver email
Why this is correct
Environment variables simplify management and allow updates without editing the flow.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Create a SharePoint list with the approver email and look it up in the flow
Why it's wrong here
While possible, it adds unnecessary complexity compared to environment variables.
- ✗
Edit the flow to hardcode the new finance manager's email
Why it's wrong here
Hardcoding is not a best practice; it requires flow editing for future changes.
- ✗
Use dynamic content from a Dataverse table
Why it's wrong here
This is valid but overcomplicated for a single value; environment variables are simpler.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may overthink the solution and choose a more complex data source (like SharePoint or Dataverse) for a simple configuration value, when environment variables are the purpose-built, lightweight mechanism for this exact scenario.
Detailed technical explanation
How to think about this question
Environment variables are stored as solution components in Microsoft Dataverse and can be scoped to a solution, allowing them to be transported across environments (e.g., from dev to prod) via managed solutions. When a flow uses an environment variable, it references the variable by its logical name, and at runtime, the Power Automate runtime resolves it to the current value stored in the environment. This enables zero-touch updates to flow behavior without modifying the flow definition itself.
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 — study guide chapter
Learn the concepts, then practise the questions
- →
Describe the business value of Microsoft Power Platform practice questions
Targeted practice on this topic area only
- →
All PL-900 questions
976 questions across all exam domains
- →
Microsoft Power Platform Fundamentals PL-900 study guide
Full concept coverage aligned to exam objectives
- →
PL-900 practice test guide
How to use practice tests most effectively before exam day
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: Use an environment variable for the approver email — Environment variables in Power Automate allow you to store configuration values, such as an approver's email, separately from the flow logic. When the finance manager changes, you only need to update the environment variable value once, and all flows referencing it automatically use the new value. This decouples configuration from code, making maintenance easier and reducing the risk of errors.
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 →
Same concept, more angles
1 more ways this is tested on PL-900
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. An organization uses Power Automate to approve expense reports. Managers want to approve via Microsoft Teams. Which connector should be used?
medium- A.Office 365 Outlook
- B.Dataverse
- ✓ C.Microsoft Teams
- D.SharePoint
Why C: The Microsoft Teams connector allows sending approval requests and receiving responses directly within Teams. Office 365 Outlook is for email, SharePoint is for document management, and Dataverse is for data storage.
Last reviewed: Jun 24, 2026
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.