True/False
int sum = 0;
int number = 1;
while (number < 100)
{
sum = sum + number;
}
The program statements above produce an infinite loop.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q49: An example for statement that has a
Q50: The conditional expression is sometimes called the
Q51: An option other than looping that can
Q52: Without incrementing the counter used in the
Q53: You must tell the user what value
Q55: Scope refers to the region in the
Q56: Class diagrams show the data, method, and
Q57: In order to use the MessageBox.Show( )
Q58: A state-controlled loop should be designed when
Q59: for (int i = 0; i <