498,570 views
8 votes
8 votes
For questions 1-3, consider the following code:

x = int(input("Enter a number: "))

if x != 7:

print("A")

if x >= 10:

print("B")

if x < 10:

print("C")

if x % 2 == 0:

print("D")

What is output if the user types in 10? Click all that apply.

User Robert Metzger
by
2.6k points

1 Answer

21 votes
21 votes

Answer:

BD

Step-by-step explanation:

User Rens Verhage
by
2.6k points