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