101k views
1 vote
What is the output of this program?

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

User Nre
by
5.7k points

2 Answers

4 votes
The output of this program would be letter b (numB=3) because square 2 equals 82 squares and then you get three
User Jjmartinez
by
5.0k points
5 votes

Answer:

out is no

Step-by-step explanation:

just took the quiz

User Ruger
by
5.9k points