528,653 views
18 votes
18 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)

User Bidstrup
by
2.7k points

1 Answer

12 votes
12 votes

Answer:

False

False

True

False

Step-by-step explanation:

Obama's last name.

User Santosh Kadam
by
2.8k points