What will be the output of the following code snippet?
x = 5if x > 0: print("Positive")else: print("Negative")
Positive
Negative
Zero
Error
This question is part of this quiz :