for Loop: Executes a block of code a fixed number of times.while Loop: Executes a block of code as long as a condition is true.do-while Loop: Executes a block of code once before checking the condition, then repeats as long as the condition is true.for-in Loop: Iterates over elements of collections.