Computer Science, asked by kdsingh436, 5 hours ago

predict the output of:
a=True
b=False
c=False
if a or b and c:
print("GEEKSFORGEEKS")
else:
print("geeksforgeeks")

Answers

Answered by beriabhi227
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