answersLogoWhite

0


Best Answer

Infinite loop.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A program with a loop that never ends is called an?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What happens if you create a loop in C program that never ends?

then your program will never ends, too unless you pressing the ctrl+c or kill it through your os. can i know the purpose of you creating the loop that never ends? is it just a mistake or are you doing it on purpose?


When you input data in a loop within a program the input statement that proceeds the loop is what?

is called a priming input


How do you loop a program in python 3?

A program can be looped in Python by wrapping the entire program in a for or while loop. If you wish to loop the program a finite amount of times, it can be done like so (x = the amount of times you want it to loop, this can be a number or variable storing a number): for i in range(0,x): [code] If you wish to loop the program infinitely, you can use a simple while loop: while True: [code]


Do loop example?

A nested loop is simply a loop within a loop. An example of such a loop is where you wish to traverse a two-dimensional array. The simplest way to traverse such a structure is to use a loop to traverse each row and a nested loop to traverse the elements within each row. int a[4][5]; // a 4x5 array of integers (4 rows, 5 columns). // ... for (row=0; row<4; ++row) // traverse rows { for (col=0; col<5; ++col) // traverse columns { std::cout << a[row][column] << ", "; // print value at current row and column } std::cout << endl; // keep each row on a separate line }


What loop should no execute if the test expression is false to begin with?

for loop and while loop need the expression to be true for further execution of the program.

Related questions

What happens if you create a loop in C program that never ends?

then your program will never ends, too unless you pressing the ctrl+c or kill it through your os. can i know the purpose of you creating the loop that never ends? is it just a mistake or are you doing it on purpose?


When you input data in a loop within a program the input statement that proceeds the loop is what?

is called a priming input


Differences between finite and infinite loop?

A finite loop executes a specific number of times based on its condition, while an infinite loop runs indefinitely without cessation. Finite loops have a predetermined endpoint, while infinite loops continue without a defined stopping condition until manually interrupted. Improperly written infinite loops can lead to system crashes or unresponsive programs.


What is the purpose of wend statement in while loop in gw-basic?

While--wend statement is used to execute a loop until a given condition is true.if the condition is false the loop ends and the program continous to the line following eend.


Which company has its headquarters at One Infinite Loop?

Apple Computers in Cupertino, California. The name, of course, is a pun on the use of "loop" to describe a circular road and a part of a computer program that is repeated; an infinite loop is a loop that's executed endlessly due to an error in the program's logic such that an end condition never occurs.


What is computing in science?

Nesting is the process of organizing information in layers. For an example, a loop in a program can contain another loop which can contain yet another loop. This is called nested loops.


What is nesting in computer science?

Nesting is the process of organizing information in layers. For an example, a loop in a program can contain another loop which can contain yet another loop. This is called nested loops.


How do you loop a program in python 3?

A program can be looped in Python by wrapping the entire program in a for or while loop. If you wish to loop the program a finite amount of times, it can be done like so (x = the amount of times you want it to loop, this can be a number or variable storing a number): for i in range(0,x): [code] If you wish to loop the program infinitely, you can use a simple while loop: while True: [code]


What is a twist loop rein?

Twisted loop reins are simply reins that have a twisted loop at the ends where the reins attach to the bit.


What is odd loop in 'C' program?

odd loop means at least the loop execute once.


What do you call a scarf with no ends?

A scarf without ends is called an infinity scarf because it is a continuous loop without distinct ends. It can be worn by looping it around the neck without any need to tie it or wrap it like a traditional scarf.


Do loop example?

A nested loop is simply a loop within a loop. An example of such a loop is where you wish to traverse a two-dimensional array. The simplest way to traverse such a structure is to use a loop to traverse each row and a nested loop to traverse the elements within each row. int a[4][5]; // a 4x5 array of integers (4 rows, 5 columns). // ... for (row=0; row<4; ++row) // traverse rows { for (col=0; col<5; ++col) // traverse columns { std::cout << a[row][column] << ", "; // print value at current row and column } std::cout << endl; // keep each row on a separate line }