predict the output of:
a=True
b=False
c=False
if a or b and c:
print("GEEKSFORGEEKS")
else:
print("geeksforgeeks")
Answers
Answered by
0
Answer:
b
Explanation:
predict the output of:
a=True
b=False
c=False
if a or b and c:
print("GEEKSFORGEEKS")
else:
print("geeksforgeeks")
Similar questions