Multiple choice technology programming languages What is essential in making sure that your loop is not infinite ? That there is a Boolean statement somewhere in your code That your Boolean statement will at some point be false That your Boolean statement will at some point be true All of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation Ensuring a loop terminates requires that its Boolean condition will eventually become false; merely having a Boolean statement or it becoming true does not guarantee exit, so only the false‑event condition is essential.