CBSE Class 12 Computer Science
Question 103 of 120
Review of Python Basics — Question 55
Back to all questions10 > 5 and 7 > 12 or not 18 > 3
= True and False or not True
= True and False or False
= False or False
= False
The above expression evaluates comparisons (>, <) first, applies the boolean 'not' operator next, evaluates the boolean 'and' operator finally, and evaluates the boolean 'or' operator last.