PL-900 Practice Question: Demonstrate the capabilities of Power Automate
You are designing a Power Automate flow that processes approvals for expense reports. If an expense exceeds $5,000, the flow must require approval from both the manager and the finance director. If the expense is between $1,000 and $5,000, only manager approval is needed. For expenses under $1,000, no approval is required. Which control structures should you use?
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
✓
Condition action with nested conditions
The scenario requires conditional logic to evaluate the expense amount and branch accordingly. A Condition action is ideal for the primary split (above/below thresholds), and nested conditions handle the sub-branches (e.g., condition for >$5,000 with nested approval actions, else condition for $1,000-$5,000, else no approval). Option A is incorrect because a Switch action is suitable for discrete values, not numerical ranges. Option B is incorrect because Apply to each is used for iterating over arrays, not for conditional branching. Option D is incorrect because Parallel branches execute actions concurrently and do not implement decision-based branching logic.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Switch action with cases for each range
Why it's wrong here
A Switch action evaluates a single expression against discrete, static values, but this scenario requires evaluating a numeric expense amount against three overlapping ranges with dynamic thresholds. The Switch cannot handle conditions like "between $1,000 and $5,000" because it lacks operators for greater-than or less-than comparisons. It is tempting because Switch neatly organises multiple fixed-value branches, such as mapping status codes to approval paths, where each case matches an exact, non-numeric label.
- ✗
Apply to each with a condition inside
Why it's wrong here
Apply to each is for repeating actions on items, not branching.
- ✓
Condition action with nested conditions
Why this is correct
Conditions allow branching based on amount ranges.
- ✗
Parallel branches for both approval paths
Why it's wrong here
Parallel branches don't provide conditional logic.
Go deeper
Related to this question
About these practice questions
Courseiva writes every PL-900 question from scratch — 904 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →
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.