Computer Science, asked by Blakestevenson6550, 5 months ago

Question 6
Which of the following lines will never print out regardless of the value of "x"?
if x < 2 :
print("Below 2")
elif x < 0 :
print("Negative")
else :
print("Something else")

Answers

Answered by nithinkumary8
0

Answer:

-1

Explanation:

-1 is below than 2.

-1 is lesser than 0.

-1 is negative number

therefore answer is -1.

Similar questions