Activity - Exit Iteration vs Jump outside the loop with nesting
In an activity:
Say I have loop A and loop B and loop C
Loop B is inside of loop A. If I have a When condition on the Loop B statement and the when condition returns false , if I choose to "Exit Iteration" from the false condition, then it will exit the iteration of loop B, and not loop A. If I want to exit the loop B entirely rather than continue with the next iteration of loop B, I can jump to a step inside of loop A but after and outside the end of loop A
Is the above understanding correct?
Also, if I wanted to just continue to the next iteration of Loop A based on the when condition of Loop B, can I jump back to the For Each line for Loop A , and will that continue with the next iteration or restart the loop?