What is the expected output of the following code?

What is the expected output of the following code?

x = 28

y = 8

print(x / y)

print(x // y)

print(x % y)
A . 1 | 3.0
2 | 3
3 | 2
B . 1 | 3.5
2 | 3
3 | 4

C . 1 | 3
2 | 3.5
3 | 4
D . 1 | 3.5
2 | 3.5
3 | 2

Answer: B

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments