Pre-Condition Loop
Summary: A loop that checks a condition before each iteration. If the condition is false initially, the loop body may never execute. Example: WHILE condition DO … ENDWHILE. Tags: concepts computer-science igcse-computer-science programming Created: 2026-05-08T14:03:00Z Last Updated: 2026-05-08T14:03:00Z
Content
A loop that checks a condition before each iteration. If the condition is false initially, the loop body may never execute. Example: WHILE condition DO … ENDWHILE.