Programming (12th Grade)
if-elif-else/operators
What is the output of the following code: x = 5 if x < 10: print('x is less than 10') else: print('x is greater than or equal to 10')
x is less than 10
x is greater than or equal to 10
x is equal to 10
x is not equal to 10
Next