Podcast
Questions and Answers
Which loop is guaranteed to execute at least once?
Which loop is guaranteed to execute at least once?
- do while loop (correct)
- nested loop
- while loop
- for loop
Which loop allows the loop counter to be a float or a character?
Which loop allows the loop counter to be a float or a character?
- nested loop
- for loop (correct)
- do while loop
- while loop
Which statement is used to exit a loop completely?
Which statement is used to exit a loop completely?
- break statement (correct)
- exit statement
- stop statement
- end statement