CSci 150: Foundations of computer science I
Home Syllabus Assignments Tests

printable version

Quiz 1

[1] [2] [3] [4] [5]

Problem Q1.1.

[6 pts] What is displayed by the below sequence of Python statements?

k = 13
print 2 + k * 2
print k % 4
print 5 * (k / 5)