Exam AB-410 Topic 1 Question 19 Discussion
Actual exam question for Microsoft's AB-410 exam
Question #: 19
Topic #: 1
Question #: 19
Topic #: 1
A company processes transaction records by using a Power Automate cloud flow.
The company has the following requirements:
# Continue processing records until a status field changes to Complete, even if new records are added during execution.
# Process a fixed list of records retrieved at the start of the flow, ensuring each record is processed exactly once.
You need to configure the flow control logic.
Which controls should you use? To answer, move the appropriate controls to the correct requirements. You may use each control once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

The company has the following requirements:
# Continue processing records until a status field changes to Complete, even if new records are added during execution.
# Process a fixed list of records retrieved at the start of the flow, ensuring each record is processed exactly once.
You need to configure the flow control logic.
Which controls should you use? To answer, move the appropriate controls to the correct requirements. You may use each control once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Suggested Answer:

Explanation:
Continue until status is Complete - Do until; Process the fixed retrieved list - Apply to each

Do until is the correct loop when processing must continue until a runtime condition becomes true. The flow can recheck the status and repeat its actions until Status equals Complete, subject to configured count and timeout limits. Because the condition is reevaluated between iterations, it can respond to a status change that occurs while the flow is running. Apply to each is correct for the fixed array of records retrieved at the beginning. It enumerates each item in that array once; records added to the source later are not automatically inserted into the already obtained collection. Scope groups actions for error handling or organization but does not implement either iteration pattern. Concurrency settings affect parallelism and ordering within a loop but do not replace the loop itself. The Do until design should include a delay or appropriate polling interval and explicit termination safeguards to avoid excessive requests. Apply to each concurrency should be chosen according to ordering and connector limits. The Study Guide's cloud-flow objectives include "implement flow control with conditions and loops." The verified mapping matches a condition-driven loop and a collection-driven loop to their intended behaviors.
Study Guide reference/topic: "Create cloud flows - Implement flow control with loops." AB-410 Study Guide | Microsoft Learn technical reference
by Boyd at Aug 20, 2026, 04:09 AM
0
0
0
10
Comments
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Report Comment
Commenting
You can sign-up / login (it's free).