MCQ PracticeSingle Best AnswerTopic: Python if else MCQ
Q
What will be the output after the following statements?
x = 68
if x <= 50 and x >= 25:
print('true')
elif x <= 60 or x >= 55:
print('not true')
elif x <= 70 and x >= 35:
print('false')
else:
print('not false')
Question ID
#3503
Subchapter
Python if else MCQ
Action
Choose one option below
Choose Your Answer
Click an option to check whether your answer is correct.