What is the major advantage of using a for loop instead of a while loop?
a. With a for loop, it is impossible to create an infinite loop.
b. The loop control variable is initialized, tested, and altered all in one place.
c. It is the only way to achieve an indefinite loop.
d. Unlike with a while loop, the execution of multiple statements can depend on the test condition.