195k views
5 votes
A for loop is most useful for: A. executing some statements for a specific number of iterations B. executing some statements for as long as a certain condition is true C. executing some statements for each item in a list D. executing some statements for as long as a certain condition is false E. executing some statements for an unknown number of times

User Hdorgeval
by
4.8k points

1 Answer

4 votes

Answer:

Option A and C

Step-by-step explanation:

  • Loops are control structures used to rehash a given area of code a specific number of times or until a specific condition is met. Visual Basic has three principle sorts of circles: for..next circles, do circles and keeping in mind that circles.
  • For loop is a programming language contingent iterative proclamation which is utilized to check for specific conditions and afterward over and over execute a square of code as long as those conditions are met.
User Sousheel
by
5.2k points