This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Select an answer for each of the following questions.
What part of a for loop would you need to modify to increment its iteration by 5?
for
The condition
The counter
The increment expression
What's the difference between a for loop and a while loop?
while
A for loop has a counter, a condition, and an increment expression, and a while loop has only a condition.
A while loop has a counter and an increment expression, and a for loop has only a condition.
They are the same, just aliases for each other.
Given the code for (let i=1; i < 5; i++), how many iterations will it perform?
5
4
0
You must answer all questions before checking your work.
Continue
Was this page helpful?