x = True
y = False
z = True
if z or y and x :
print ("PythonEasy")
else:
print ("Not in PythonEasy")
Options:
Explanation
Correct answer is : A
and has higher precedence than or so y and x will be evaluated first which results in False. Then z (value False ) or False results in True. So PythonEasy will be the output
Comment here: