Computer Science, asked by kinatemsu69, 4 days ago

What is a loop ? How can you create loops in q basic

Answers

Answered by sagiveeraraghavulu
0

Explanation:

Looping Statement. ...

loop is a sequence of instructions that is repeated until a certain condition is reached. ...

•For Next loop. ...

Loops allows a specified group of statements to be executed a certain number of times while certain condition is true.

FOR counter = start TO end [STEP] ...

For Loop's syntax.

Answered by Anonymous
0

Loop is a programming structure that repeats a sequence of instructions until a specific condition is met

CLS

n = 1

DO

PRINT n;

n = n + 1

Loop While n<=10

End

Similar questions