CBSE Class 12 Computer Science
Question 62 of 105
Python Revision Tour — Question 16
Back to all questionsTrue
Reason — The 'not' operator has the highest precedence, followed by 'and', which has precedence over 'or', and the evaluation proceeds from left to right.
not True and False or True
= False and False or True
= False or True
= True