Question 1: Which loop is best suited when the number of iterations is known beforehand?
Question 2: Which JavaScript loop executes at least once, even if the condition is false?
Question 3: Which keyword is used to exit a loop prematurely?
Question 4: Which loop is used when we don’t know the exact number of iterations in advance?
Question 5: Which statement is used to skip the current iteration and continue to the next iteration in a loop?
Question 6: Which type of loop is commonly used to iterate over array elements?
Question 7: Which loop is specifically designed for iterating over object properties?
Question 8: What happens when the condition in a while loop is always true?
Question 9: Which loop syntax is correct for iterating from 1 to 10 in JavaScript?
Question 10: Which loop structure is best for executing a block of code at least once before checking the condition?