Q. What will be the output of the following Python code?
Code:
num = 10
if num > 0:
print("Positive number")
elif num == 0:
print("Zero")
else:
print("Negative number")
β
Correct Answer: (A)
Positive number