Q. Write the output of the following :
Code:x = 10
if x > 7 and x <= 10:
print("Pass", end="")
print("Fail")
β
Correct Answer: (D)
PassFail
x = 10
if x > 7 and x <= 10:
print("Pass", end="")
print("Fail")
You must be Logged in to update hint/solution