Q. Write the output of the following
Code:
x = 10
if x > 7:
print("Hello")
print("Bye")
β
Correct Answer: (D)
Hello Bye
x = 10
if x > 7:
print("Hello")
print("Bye")
You must be Logged in to update hint/solution