Computer Science, asked by tuduignatius4gmailco, 2 months ago

72 Which is not a loop structure?
(a) for
(b) do while
(c) while
(d) repeat until​

Answers

Answered by yatishpatra4540
3

Answer:

for

Explanation:

for

for

for

for

for

for

Answered by Chaitanya1696
0

The correct option is d) repeat until

d) Repeat Until is not a loop structure.

  • The 'repeat until loop' is alike the while loop.
  • The repeat until loop will definitely produce a task at least once unlike the while loop.
  • The syntax of 'repeat until loop' is:-

repeat

  S1;

  S2;

  ...

  ...

  Sn;

until condition;

  • It performs a task or statement repeatedly multiple times until there is a condition.
Similar questions