PL-500 · Question #58
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might h
The correct answer is B. No. A switch condition routes execution to one matching branch based on a value; it does not run multiple independent actions concurrently.
Question
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are creating a cloud flow that will use two Update Row actions to interact with Microsoft Dataverse. Neither of these actions are dependent on each other. You must minimize the amount of processing time require to complete the flow. You need to implement the actions in the cloud flow. Solution: Create a switch condition. Does the solution meet the goal?
Options
- AYes
- BNo
How the community answered
(46 responses)- A28% (13)
- B72% (33)
Why each option
A switch condition routes execution to one matching branch based on a value; it does not run multiple independent actions concurrently.
Selecting Yes is incorrect because a switch condition is a decision-routing construct, not a parallelism mechanism, and only one code path executes at a time regardless of how many cases are defined.
A switch condition evaluates a single expression and directs flow execution to exactly one matching case branch, executing that branch sequentially. It cannot run multiple actions in parallel and therefore does not minimize the combined processing time of two independent Update Row actions - it adds branching logic without providing any concurrency benefit.
Concept tested: Power Automate control flow constructs vs. parallel execution
Source: https://learn.microsoft.com/en-us/power-automate/parallel-modern-approvals
Topics
Community Discussion
No community discussion yet for this question.