LOOP IS MEANT AS GOING IN A CIRCLE
AROUND
2006-09-26 18:13:29
·
answer #1
·
answered by ybzcarlos1 4
·
0⤊
0⤋
In programming, a loop is a block of code which repeats itself, either a set number of times or continually (known as an infinite loop. For example:
int x = 0;
while(x>2) {
x++;
}
This Java excerpt will run run 3 times (where x = 0,1,2), each time increasing x by 1 until it reaches 2, where the expression x>2 returns false, terminating the loop.
2006-09-27 01:17:22
·
answer #2
·
answered by John H 4
·
0⤊
0⤋
A loop is a sequence of instructions that is continually repeated until a certain condition is reached. It also has an exit routine or (program) may be part of an operating system or part of an application program.
If the condition has been reached, the next instruction "falls through" to the next sequential instruction or branches outside the loop.
2006-09-27 22:31:06
·
answer #3
·
answered by fsyahoo 1
·
0⤊
0⤋
a loop is a feature of programming. u tek the real day concept --- wat do mean by a loop??? 1 dat goes round and round untill u want it 2 stop. its da sem with prog. u direct an operations or many operations to b performed again n again untill u wanna stop em wid help of a for, while, do-while loop (names of loops for JAVA). Njoy .....
2006-09-27 01:15:27
·
answer #4
·
answered by robokid 2
·
0⤊
0⤋
draw a circle on a piece of a paper n then examine the line thru which a circle is drawn......that line never ends.....means loop is a repeation of something a process or anything.
2006-09-30 08:56:57
·
answer #5
·
answered by Ravish 1
·
0⤊
0⤋
It is a medical instrument used for controlling the pregnancy.
2006-09-27 01:16:50
·
answer #6
·
answered by Mehbooba 4
·
0⤊
0⤋
Its a repitition in a program....
2006-09-27 01:14:17
·
answer #7
·
answered by Chrysler d 2
·
0⤊
0⤋