2020-08-13 12:00:20 +02:00
|
|
|
---
|
|
|
|
id: 5e7b9f080b6c005b0e76f063
|
|
|
|
challengeType: 11
|
|
|
|
videoId: cIA0EokbaHE
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: files-as-a-sequence
|
2020-08-13 12:00:20 +02:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
|
|
|
|
2020-08-13 12:00:20 +02:00
|
|
|
More resources:
|
2020-12-16 00:37:30 -07:00
|
|
|
|
|
|
|
\- [Exercise](https://www.youtube.com/watch?v=il1j4wkte2E)
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
|
|
|
What does the word 'continue' do in the middle of a loop?
|
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
Skips to the code directly after the loop.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Skips to the next line in the code.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Skips to the next iteration of the loop.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Skips the next block of code.
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
3
|
|
|
|
|