Infinite loops are a common cause of errors in programming. True or false?
Answers
Infinite loops are a common cause of errors in programming is True.
In programming language common error Is infinite loop. In programming language their mostly three type of loop statements are used which is as follows.
1. For loop
2. While …wend
3. Do while … end do
For loop always lower value to higher value or higher value to lower value (with step of counts).
Suppose programmer execute loop from lower value to still below lower value it goes infinite loops.
While always execute the loop based on the condition been assigned if while loop condition with true statements. Loop has executed based on condition give true. If programmer write loop.
Where there is condition always true. It becomes infinite loops. Same way do while execute the loop base on the conditions.
Learn More About Infinite loops
Programming an infinite loop
https://brainly.in/question/9902903
Does an infinite loop terminate?
https://brainly.in/question/8790854