Answer:
Loop.
Explanation:
In loop there is execution of statements in the body of loop one by one.It follows the order provided by user or the condition in the loop.
for Example:-
for(int i=1;i<=10;i++)
{
cout<<i<<endl;
}
The loop above will run from i=1 to i=10 and prints the value of i 10 times.
It follows the pattern of increasing i by 1 on every iteration a and starting i from 1 and if i becomes equal to 10 then the loop will stop.