98.9k views
15 votes
9) What would the following statements print?

x = 10
n = 19
print (x > 0 and x < 10)
print (n % 2 ==0 or n % 3 ==0)
print (n != x)
print (n == x)

1 Answer

10 votes

Answer:

False

False

True

False

Step-by-step explanation:

Obama's last name.

User Shalom
by
4.5k points