Saved Bookmarks
| 1. |
Which things are used in loops? |
|
Answer» Loop statements USUALLY have four components: initialization (usually of a loop CONTROL VARIABLE), continuation TEST on WHETHER to do another iteration, an update step, and a loop body.Explanation: |
|