answersLogoWhite

0

What is repeat loop?

Updated: 12/10/2022
User Avatar

Wiki User

8y ago

Best Answer

Most programming languages have some loop construct, that make it possible to repeat commands several times. The available commands vary, depending on the language; as an example, Java has the "for", "while", and "do...while" keywords.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is repeat loop?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Repeat (10)Do sit up?

Loop


Why you use for loop inside switch statement?

Because you have to repeat something. (Or you can use while-loop, too.)


How do you get your windows media player to loop?

Start the media player. to the LEFT of the play button is a circular arrow. This is the repeat button. Simply click that to make it repeat. It will loop indefinitely until you click the repeat button again to turn the feature off.


What is a loop type?

A Loop is a programming language construct that instructs the processor to repeat a sequence of operations a number of times until a specific condition is reached. There are different types of loops. They are: * for loop * while loop * do while loop


What is meant by while looping?

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.


What did the code inventor think when he had to repeat his message three times?

i just exited a for loop!


How does a REPEAT loop work?

The repeat loop is very simple. It allows you to repeat a statement or block of code without needing to copy-and-paste it. Here are some examples:{repeat(5){x += 15;}}{repeat(3){x += 15; y -= 5;}}The number in the parentheses dictates how many times you want to repeat the statement/code block.You may also use a variable:repeat(self.x){instance_create(irandom(400),irandom(400),object_obj);}


Write a note on indeterminate loop in visual basic?

Indeterminate loops in Visual Basic are loops that repeat for an unknown number of times. The programmer sets up the loop to repeat until a certain condition is reached, or while a certain condition is true.


What is the meaning of the repeat command?

The exact meaning will depend on the language. In general, however, the repeat command will repeat a block of statements while a condition remains true (much like a do...while or for loop).


What is he do loop?

A "do" loop is a construct in a programming language that lets you repeat instructions over and over, as long as a certain condition is true. The details vary, depending on the programming language.


What control structure allow you to repeat sequences?

A for loop, and a while loop can do that. Some languages support a for each loop, which repeats a sequence of commands for each element in a collection (e.g., an array). You can also achieve repetition using recursion.


What are you use of loops?

A loop is used in programming to repeat a set of commands in the program when a task is a repetitive one