

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is True regarding loops in Python? |
A. | Loops should be ended with keyword "end". |
B. | No loop can be used to iterate through the elements of strings. |
C. | Keyword "break" can be used to bring control out of the current loop. |
D. | Keyword "continue" is used to continue with the remaining statements inside the loop. |
Answer» D. Keyword "continue" is used to continue with the remaining statements inside the loop. | |