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