Online Python 3 Quiz: Challenge Your Programming Skills

Python MCQ Quiz

Python MCQ Quiz

What is the output of the following code?
x = 10
y = 5
print(x % y)
A. 0
B. 5
C. 10
D. 15
What is the output of the following code?
x = "hello"
y = "world"
print(x + y)
A. "helloworld"
B. "hello world"
C. hello world
D. "helloworld"

Post a Comment

0 Comments