You can use this assignment in your class!
Mastery Progress(100.0%)
i

Programming Using Python Day 1 Review

What does the following code print:

x = 15
y = 10
z = 33
print(x)
print(y)
print(z)

You answeredJUST NOW

(Student response here)

  • I want to share my response with my peers
  • Share as
    (Student name)
    Options
    • (Student name)
    • Anonymous

Did you like this question?

(Voting helps us personalize your learning experience!)
imgInstructor solution
Alec KretchJUN 24, 2021, 2:47:55 AM
15
10
33

Was this helpful?

(Voting helps us personalize your learning experience!)
Think you've got it?

What does the following code print:

x = 15
y = x
print(x)
print(y)
Select one of the following options:
  • A.
    x
    y
    
  • B.
    15
    x
    
  • C.
    15
    15
    
  • D.
    15
    y
    
Submit answer

Was this helpful?

(Voting helps us personalize your learning experience!)

You may exit out of this review and return later without penalty.