question 35\n1 pts\nin the following code, what values could be read into number to terminate the while…

question 35\n1 pts\nin the following code, what values could be read into number to terminate the while loop?\nsystem.out.print(\enter another number: \); number = keyboard.nextint();\nnumbers less than 100\nnumbers greater than 500\nnumbers in the range 100 - 499\nnumbers in the range 100 - 500

question 35\n1 pts\nin the following code, what values could be read into number to terminate the while loop?\nsystem.out.print(\enter another number: \); number = keyboard.nextint();\nnumbers less than 100\nnumbers greater than 500\nnumbers in the range 100 - 499\nnumbers in the range 100 - 500

Answer

Brief Explanation:

The while - loop will terminate when the input condition is false. Without seeing the full loop condition, if we assume the loop continues as long as the number is outside the range 100 - 499 (since we need to find values to terminate it), values in the range 100 - 499 will terminate the loop.

Answer:

Numbers in the range 100 - 499