Programming (Year 12)
Conditional Statements
What is the output of the following code? python x = 5 if x > 3: print('Greater than 3') else: print('Less than or equal to 3')
Greater than 3
Less than or equal to 3
Error
None of the above
Next