Computer Science, asked by jonastomson26, 5 months ago

What will be the output produced by the following code?
print(14//4, 14%4, 14/4)​

Answers

Answered by jai696
16

The output will be 3 2 3.5

Explanation:

  1. // operator performs floor division
  2. % operator returns the remainder after division
  3. / operator performs normal division

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by srisaikoumudi
2

2) 14%4 = 4)14(3 so the answer is 2

12

__

2

3) 14/4= 3.5

Similar questions