Computer Science, asked by aayushij619, 7 hours ago

6 of 40 | Multiple Choice If both m and n are int, then "m/n" and "m // n both evaluate to int.
1 True
2 False​

Answers

Answered by NotPrash
0

Answer:

False

Explanation:

m // n will evaluate to 1 which is an int while m / n will evaluate to 1.0 which is  a decimal (float)

Similar questions