Computer Science, asked by shafakhatoongaya10, 7 months ago

a general programming construct that allows a program to easily repeat the same set of instruction​

Answers

Answered by atharva1651
0

Answer:

For loop

Explanation:

Example of for loop is

for(i=0;i<=5;i++)

{System.out.println("hi");}

Output

hi

hi

hi

hi

hi

Similar questions