CBSE Class 12 Computer Science Question 110 of 120

Review of Python Basics — Question 5

Back to all questions
5
Question

Question 5

break, continue, pass are the three conditional statements.

Answer

False

Reason — In Python, 'break', 'continue', and 'pass' are control flow statements used to manage the flow of execution in a program. On the other hand, conditional statements such as 'if', 'else', and 'elif' are used to perform different actions based on specific conditions.