For more review and information on while loops see Section 1.5.4 in your text book (page 14).
For more review and information on for loops see Section 1.5.5 in your text book (page 14).
Note: I am putting these here because students have asked them in the past, this is not a reflection of what will be on quizzes.
A: In Java they are pretty much the same. For loops are a bit easier to read, especially when there is a lot of code inside the loop, it is nice to be able to see where the loop begins, ends, and how much it is changing by all in one place. For loops in other languages work a bit differently.
A: Yes, you can call a method from a while loop over and over.
A: Yes, recursive loops are coming up this semester.