What is the output of the Python code? x = 20 if x < 10: print("Less than 10") elif x < 20: print("Less than 20") elif x < 30: print("Less than 30") else: print("30 or more") a) Less than 10 b) Less than 20 c) Less than 30 d) 30 or more
16
3
19
4K
3
@PythonDQ The second else if statement is met. "Less than 30" executes.