Question 2
What does the break statement do in a loop?
Skips to the next iteration
Exits the loop
Restarts the loop
Pauses the loop
Question 3
What is the purpose of a continue statement?
Exits the loop
Skips the current iteration
Defines a condition
Allocates memory
Question 5
What causes an infinite loop?
Missing break
Incorrect condition
Missing continue
Wrong variable type
There are 5 questions to complete.