Checkpoint 5.3.1.
What does the following code print?
x = -10
if x < 0:
print("The negative number ", x, " is not valid here.")
print("This is always printed")
a. This is always printed b. The negative number -10 is not valid here This is always printed c. The negative number -10 is not valid here
Output a
Output b
Output c
It will cause an error because every if must have an else clause.