Computer Science, asked by barbie7714, 10 months ago

What is the output of program code 9//2

Answers

Answered by bktbunu
0

Explanation:

output of the code a//b is always an integer (the decimal values are trimmed) that is the integer quotient by dividing a by b.

output of program code 9//2 = 4 [9÷2 = 4.5 => decimal value .5 is trimmed]

Similar questions