Baheeg Training and Test Exam

Python beginner level

Score: 0 / 0 answered

Progress: 0 of 1090 qs

time elap: 00:00

Question 1: What is the output of the following code?

x = 15
if x > 20:
    print("Greater than 20")
elif x > 10:
    print("Greater than 10 but less than or equal to 20")
else:
    print("Less than or equal to 10")