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