Concept Flow - While loop
Initialize variable
Check condition
Execute loop body
Update variable
↩Back to Check condition
The while loop checks a condition before each iteration. If true, it runs the loop body and updates variables, then checks again. If false, it exits.