Match each item with a statement below.Match each item with a statement below:

A. A loop that (theoretically) never ends.
B. A variable that controls the execution of a while loop.
C. A loop body with no statements in it.
D. Another name for a definite loop.
E. A shorthand structure for programming a definite loop.
F. Contains an inner loop when loops are nested.
G. The value of an uninitialized variable.
H. Checks at the "bottom" of the loop after the first iteration.
I. The amount by which a loop control variable changes on each cycle.
J. The area of a program in which a variable or named constant is known and can be used.

A. infinite loop
B. loop control variable
C. empty body
D. counted loop
E. for loop
F. outer loop
G. garbage
H. do loop
I. step value
J. scope

Computer Science & Information Technology

You might also like to view...

Which Amazon Elastic Compute Cloud (Amazon EC2) feature ensures that your instances will not share a physical host with instances from any other AWS customer?

A. Amazon Virtual Private Cloud (VPC) B. Placement groups C. Dedicated Instances D. Reserved Instances

Computer Science & Information Technology

What are the block of statements that are executed in a loop considered to be part of?

A. a loop body B. an iteration block C. the loop header D. the loop block

Computer Science & Information Technology