- A true
- B false
- C not true
- D not false
Python Programming Language MCQ Python if else MCQ
⚠ Report ✓ Question Verified Copy Link
x = 25
if x > 10 and x <= 15:
print('true')
elif x >= 15 and x < 25:
print('not true')
elif x >= 25 and x < 35:
print('false')
else:
print('not false')
Learn More MCQ Questions from Python Programming Language MCQ Python if else MCQ