What is the difference between a for loop and a while loop?
There is no difference; they are interchangeable.
A for loop is more concise than a while loop.
A for loop is used for iteration, while a while loop is used for conditional statements.
A while loop is used for iteration, while a for loop is used for conditional statements.