InterviewSolution
Saved Bookmarks
| 1. |
What will be the output of the following operation: num1=13, num2=4 print(num1//num2) |
|
Answer» ONG>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 |
|