169k views
0 votes
For questions 1-3, consider the following code:

x = int (input ("Enter a number: "))
if x 1 = 7:
print("A")
if x >= 10:
print("B")
if x < 10:
print("C")
if x % 2 == 0:
print("D")

For questions 1-3, consider the following code: x = int (input ("Enter a number-example-1

1 Answer

4 votes

Answer:

A

Step-by-step explanation:

User Victor Dencowski
by
7.5k points