Respuesta :

Answer:

C. infinite loop

Explanation:

If we cannot make a false condition in a while cycle, the cycle will be infinite, because the condition always is true and making the operation infinitely.

For example:

// we declarate our vairable = 0

       int i = 0;

// we make the while cycle = true

       while (true) {        

// we increment our variable

           i++;

// we print our variable

           System.out.println ("Valor de i: " + i);

// If we are not make this condition, the cycle will be infinte

           if (i==9) {

               break;

}  

       }

Otras preguntas

ACCESS MORE