Term
If a For loop’s increment is positive, then the body of the loop will not be executed if the initial value is __________ _________ the limiting value. |
|
Definition
|
|
Term
For readability, most programs __________ the body of a loop. |
|
Definition
|
|
Term
If the increment of a For loop is negative, then the body of the loop will not be executed if the initial value is ________ than the limit value. |
|
Definition
|
|
Term
A loop that is executed a fixed number of times, where that number is known before entering the loop for the first time, is known as a(n) __________ __________ loop. |
|
Definition
|
|
Term
One way to force a loop to end is to have the user enter a special item, called a(n) ___________ __________ which acts as a signal that input is complete. |
|
Definition
|
|
Term
If a loop contains a test condition that can never be met, it is called a(n) __________ loop. |
|
Definition
|
|
Term
A variable that keeps track of the number of passes through a loop is known as a(n) __________. |
|
Definition
|
|
Term
To __________ data means to ensure that the data are in the proper range. |
|
Definition
|
|
Term
If Number1 = 19.86 and Number2 = 2.94 then:
Int(Number1 + Number2) = __________. . |
|
Definition
|
|
Term
When a loop counter is set to its first value, it is said to be __________. |
|
Definition
|
|
Term
The number of passes through a loop is known as the number of loop __________. |
|
Definition
|
|
Term
If Number1 = 12.2 and Number2 = 13.3, the expression
Int(Ceiling(Number1) + Ceiling(Number2))
evaluates to __________.. |
|
Definition
|
|
Term
If Number1 = 19.86 and Number2 = 2.94, then:
Int(Number1) + Int(Number2) = __________. |
|
Definition
|
|