What is the output of the following code snippet?
x = 10
if x > 5:
print("Greater than 5")
elif x > 8:
print("Greater than 8")
else:
print("Less than or equal to 5")
Greater than 5
Greater than 8
Less than or equal to 5
No output
This question is part of this quiz :
Python Control Flow & Conditional Logic quiz