Java Loops Flashcards
A is a structure
that allows repeated
execution of a block
of statements.
loop
One execution of
any loop is
called an
iteration
A , in which the loop-controlling Boolean
expression is the first statement in the loop
while loop
A , in which the loop controlling Boolean
expression is the last statement in the loop
do…while loop
The first line of
the for loop is
known as the
loop
header
The first expression is the
initialization expression
The second expression is the
test
expression
This is a
expression at controls the
execution of the loop
boolean
The third expression is
the
update expression
in
many circumstances,
simplifies array processing. It
is known as the
enhanced for
loop.
A , which is usually used as a concise format
for loop
is
designed to iterate once for
every element in an array
enhanced for loop