Programming Language Python Variable MCQ Question #3782
Single Choice Not Set

QWhat will be the output after the following statements?
a = 0
b = 5
c = 10
a = b
b = c
c = a
print(a, b, c)

ID: #3782 Python Variable MCQ 279 views
Question Info
#3782Q ID
Not SetDifficulty
Python Variable MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 0 5 10
  • B 5 10 10
  • C 5 10 5
  • D 5 5 10
Correct Answer

Explanation

5 10 5

Share This Question

Challenge a friend or share with your study group.