Drag and Drop Question
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.

Answer:

Explanation:
Box 1: Do until
A Do Until control logic is perfectly suited for this Power Automate cloud flow requirement. It allows the flow to continuously loop and process records dynamically, meaning if new items are continuously added to the queue during execution, the loop will catch and process them as long as the data is retrieved dynamically inside every iteration.
Box 2: Apply to each
Use the "Apply to each" control action. It takes the fixed array (list of records) you retrieved at the start of your flow and processes the records one by one.
Reference:
https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-control-flow-loops
https://learn.microsoft.com/en-us/power-automate/apply-to-each