Back to quizzes
Conditional Statements Quiz
Java / Loops | Medium | 15 questions
Question 1 of 15
4 free questions left
What will the following code output? `x = 3; if x % 2 == 0: print('Even'); else: print('Odd')`
A
Odd
B
Even
C
Error
D
None