a(n) loop usually occurs when the programmer does not include code inside the loop that makes the test condition false and can cause what to happen?. (select two)

See Answers (1)

Suggested Answer

An infinite loop  usually occurs when the programmer does not include code inside the loop that makes the test condition false and can cause. The most common cause of an infinite loop is when a programmer forgets to include code inside the loop that will make the test condition false and create a nice infinite loop.What is infinite loop ?In computer programming, an infinite loop is a set of instructions that, if left unchecked, will run continuously unless something drastic happens. It may be done on purpose.When a condition constantly evaluates to true, the result is an infinite loop, and as a result, the loop control never leaves the loop. For instance, print if I = -1 while i!= 0. (1).A loop that never comes to an end is known as an infinite loop. As we have seen previously, a program may contain an infinite loop purposefully or accidentally. There are several techniques to make an infinite loop, as we've shown, and the solution to come out from infinite loop is use of break statement.To learn more about infinite loop refer to:https://brainly.com/question/13142062#SPJ4

Related Question in Computers and Technology