Single Choice Not Set

QWhat will be the output after the following statements?
x = 16 / 4 * 5
y = 16 / 4 * 5.0
z = 16 / 4.0 * 5
print(x, y, z)

ID: #3768 Python Operator MCQ 303 views
Question Info
#3768Q ID
Not SetDifficulty
Python Operator MCQTopic

Choose the Best Option

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

  • A 25 15 20
  • B 20.0 20.0 20.0
  • C 20.0 20 20.0
  • D 20 20.0 20
Correct Answer

Explanation

20.0 20.0 20.0

Share This Question

Challenge a friend or share with your study group.