

InterviewSolution
Saved Bookmarks
1. |
What will be the output after the following statementsX=25Y=15X-=yPrint (x) |
Answer» 12<br>10<br>The output will be 10 as x-=y means that x=x-y which is x=25-15. So the answer is x=10. The print command will give this output ~ \'10\' | |