From health tips to tech hacks, find it all on IDNLearn.com. Ask anything and receive comprehensive, well-informed responses from our dedicated team of experts.

What is the output of this program?

numA = 2
numB = 3
if numA == 2 and numB == 2:
print("yes")
elif numA == 2 and numB == 3:
print("no")
Output:


PLEASE HELP ME!!!!!!!!!


Sagot :

it will print no, because B = 3 and not 2 so it will skip the print yes line.

Answer: output is no

Step-by-step explanation:

this question popped up in my feed 3 times lol