0
What will be the question output of the following programs?
a=True b=false C=false If not a or b: Print 1 Elif not a or not b and c: Print 2 Elif not a or not b and c: Print 3 Else: Print4
1 Answer
0
a = True
b = False
c = False
if not a or b:
print (1)
elif not a or not b and c:
print (2)
elif not a or b or not b and a:
print (3)
else:
print (4)