answersLogoWhite

0


Best Answer

A "While" loop is a part of computer programming.

The logic is "while this condition is true, do the following commands and repeat".

By default this will repeat forever creating a "loop" in logic. To stop looping you have to include a command that will change the original condition inside the loop.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is meant by while looping?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the three looping statement in turbo C?

for,while,do while


What is a while loop known as?

A Looping Structure


Is while-wend a looping statement?

Yes.


What is looping statement in turbo c?

while, for, do-while (and perhaps goto)


What are the three looping statements in java PL?

There are 4 different looping statements in Java. They are:While loopDo-While loopFor loopFor Each loop


What is looping statement?

What is looping statement?


What are iterative statements?

An iterative statement is a looping statement, such as a 'for', 'while', or 'do-while' statement. They cause statements to be repeated (iterated) multiple times.


What is Looping in writing?

Looping is linking your thoughts to expand on your writing.


What is the notation used to place block of statements in a looping structure in C plus plus?

for( ; ; ) { statement_block; } while( conditional_expression ) { statement_block; } do { statement_block; }while( conditional_expression )


What is the difference between Do While statements and Do For statements?

A "do while....." statement is a looping instruction to a program to repeat a stage in the program while some condition is true - e.g while a variable is negative, or, while one variable is less than another. A "do for ....." statement is a looping instruction to a program to repeat a stage in the program a set number of times - e.g for steps = 1 to 10, or, for steps = 1 to (some variable).


What is the difference between conditional statements and looping statements?

The main difference is how often they run. A conditional statement - often an IF - may or may not run. If it does (depending on whether a condition is fulfilled), it runs only once. A looping statement - often a WHILE or FOR - is designed to repeat, while a certain condition is true.


What are the differences between looping structure and conditional structure?

A conditional structure takes out of possible multiple paths given a condition. A looping structure, on the other hand, repeats the same steps while a specific condition is still met. Examples: Conditional: if (x 5) //do action end while