Erstellt von Jack Bradley
vor fast 7 Jahre
|
||
Frage | Antworten |
Iteration | The principle of repeating processes |
Definite Iteration | A process that repeats a set number of times |
Indefinite Iteration | A process that repeats until a condition is met |
WHILE... ENDWHILE Loop | The condition is tested/checked upon entry to the loop. It is possible that the instructions inside the loop might not be executed at all if the entry condition is not me |
REPEAT... UNTIL Loop | In a REPEAT...UNTIL loop the statements in the loop are executed before the condition is evaluated. The statement will always be executed at least once. In Python the REPEAT...UNTIL loop is not supported. |
FOR… NEXT Loop | For loops are a type of iteration that allow the coder to specify how many times a section of code should be repeated during the running of a program |
Möchten Sie mit GoConqr kostenlos Ihre eigenen Karteikarten erstellen? Mehr erfahren.