CBSE Class 11 Computer Science Question 88 of 161

Flow of Control — Question 12

Back to all questions
12
Question

Question 12

What are jump statements? Name them.

Answer

Jump statements are used to unconditionally transfer program control to other parts within a program. Python provides the below jump statements:

  1. break
  2. continue
Answer