WorksheetsLOOP
Total questions: 10
Worksheet time: 5mins
It is a software program or script that repeats the same instructions or processes the same information over and over until receiving the order to stop.
Loop
Loop Structure
For Loop
While Loop
What's the advantage of looping?
Creativity
Quality
Efficiency
Unity
What is the control variable used in loops?
Condition
Elements
While Loop
Iteration
What phrase is used to execute a block of code as long as a specific condition is true?
For Loop
While Loop
Do-While Loop
Looping
Definite loops are type of loop where there is a predetermined number of repetitions of the sequence of items while the indefinite loop is a practice that refers to a loop within a loop.
True
False
What is the practice of placing a loop inside another loop called?
Nested Loop
Internal Loop
For Loop
Inner Loop
What's wrong with this code?
Missing Exit Condition
True
Missing Initialization
Nothing is wrong with the code
What happens if you run this code?
It will run indefinitely
It won't run indefinitely
The code will not run
False
Give 2 examples of common loop applications
Iterating over Collections
Nested Loop
Definite Loop
Performing calculations
Can we use a for loop to perform calculations or operations on a set of data, For instance, finding the sum, average, or other statistics?
No
Yes
I’m not sure
Maybe
