Q. Which of the following value of ‘x’ makes the condition False in the given code?
Code:
if (x > 7 or x == 3) and x!=11 :
print("H")
β
Correct Answer: (C)
5
if (x > 7 or x == 3) and x!=11 :
print("H")
You must be Logged in to update hint/solution