Loop Statements Evaluation

Questions on Loop Statements

1. For Loop

Explain the `for` loop in Java. Provide an example of a `for` loop that prints numbers from 1 to 10.

2. While Loop

Discuss the `while` loop in Java. Write an example of a `while` loop that prints numbers from 1 to 10.

3. Do-While Loop

Describe the `do-while` loop in Java. Provide an example of a `do-while` loop that prints numbers from 1 to 10.