What is a loop ? How can you create loops in q basic
Answers
Answered by
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
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
Math,
2 days ago
Biology,
2 days ago
Environmental Sciences,
2 days ago
World Languages,
4 days ago
Math,
4 days ago
Math,
8 months ago
Math,
8 months ago
Accountancy,
8 months ago