- A 0
- B 1
- C 2
- D 15
Python Programming Language MCQ Python if else MCQ
⚠ Report ✓ Question Verified Copy Link
x = 15
if x > 15:
print(0)
elif x == 15:
print(1)
else:
print(2)
Learn More MCQ Questions from Python Programming Language MCQ Python if else MCQ