128k views
5 votes
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.

Group of answer choices

B

C

D

A

1 Answer

5 votes
The correct answer is b
User Yashesh
by
7.6k points