Answer: a
Step-by-step explanation:
for(int i = 1; i <= 100; i++)
means the execution start from 1 that is i=1 and execution will stop at 100 dot.
the loop will test the statement, if the statement is true it will execute and go to the next(that is increment by 1).