Which THREE are valid options for handling errors in a Power Automate flow? (Choose three.)
Trap 1: Parallel branches
Incorrect. 'Parallel branches' are for concurrent execution, not error handling.
Trap 2: Try-catch-finally pattern using scopes
Incorrect. The 'Try-catch-finally pattern' is a design pattern implemented using scopes and 'Configure run after', but it is not a native built-in error handling option.
- A
Configure run after
Correct. 'Configure run after' is a built-in mechanism to handle errors by specifying execution conditions based on previous action outcomes.
- B
Scope
Correct. 'Scope' groups actions and can be used with 'Configure run after' to create error handling blocks.
- C
Parallel branches
Why wrong: Incorrect. 'Parallel branches' are for concurrent execution, not error handling.
- D
Retry policy
Correct. 'Retry policy' is a built-in error handling option that automatically retries an action on failure.
- E
Try-catch-finally pattern using scopes
Why wrong: Incorrect. The 'Try-catch-finally pattern' is a design pattern implemented using scopes and 'Configure run after', but it is not a native built-in error handling option.