Which two statements correctly describe iterative and non-iterative structures in scripts?

In programming, a non-iterative program structure always contains loops. If statements and switch case statements are used to write non-iterative programs. An if…else statement is a type of conditional statement. With a while loop, the loop is executed at least once. A switch statement is a loop that requires a counter variable.