CBSE Class 10 Computer Applications Question 4 of 26

Python Conditionals and Loops — Question 2

Back to all questions
2
Question

Question 2

Which of the following is/are not a valid Python loop ?

  1. for
  2. while
  3. iter
  4. repeat
Answer

iter, repeat

Reason — iter and repeat are not valid Python loop. for and while are valid loop statements.