Python Programming Language MCQ Python if else MCQ
⚠ Report ✓ Question Verified Copy Link
x = 99 if x <= 30 or x >= 100: print('true') elif x >= 50 and x <= 80: print('not true') elif x >= 100 or x <= 75: print('false') else: print('not false')
Learn More MCQ Questions from Python Programming Language MCQ Python if else MCQ