+ 2
True or true and false --- what will be the answer which will it process first
2 Answers
+ 5
The order of boolean operators is:
not > and > or
Thus;
True and False = False
True or False = True
Resulting in True
+ 1
'and' has more precedence then 'or'
so True and False is False and then True or False is True.
Ans is True