Java Games: Flashcards, matching, concentration, and word search.

Prog1 C5 5.5 Parts of a For Next loop (Simple)

Match the code with the description of the parts in a Do While loop

AB
The counting variableintCount
Declaring a counting variableDim intCount As Integer
Initializing a counting variable to 0For intCount = 1
The start of a For Next loopFor
The end of a For Next loopNext ...
Incrementing the counting variable by 1Next intCount
A loop that goes 10 timesFor intCount = 1 To 10
A loop that goes 5 timesFor intCount = 1 To 10 Step 2
A loop that goes 7 timesFor intCount = 1 To 7
A loop that goes 20 timesFor intCount = 1 To 40 Step 2


Instructor
Independence High School
Charlotte, NC

This activity was created by a Quia Web subscriber.
Learn more about Quia
Create your own activities