Computer Science, asked by bathnotrarahul6, 2 months ago

What will be the output of the following operation:

num1=13, num2=4

print(num1//num2)​

Answers

Answered by waqarahmed2005
1

Answer:

13/4

if in int then output will be 3

if in double output will be 3.0d

if in float output will be 3.0f

if in string output will be 3.25

hope helped

Similar questions