CBSE Class 12 Computer Science Question 109 of 120

Review of Python Basics — Question 4

Back to all questions
4
Question

Question 4

Relational operators return either True or False.

Answer

True

Reason — Relational operators in Python return either True or False based on the comparison result between two operands. For example, the greater than operator (>) returns True if the left operand is greater than the right operand, and False otherwise.