InterviewSolution
Saved Bookmarks
| 1. |
>>>x=15 >>>x=x+5 >>>x=print(x) what will be the following program print out |
| Answer» N:->>>x=15>>>x=x+5>>>print(x)What will be the OUTPUT of the programGiven ,x=15x=x+5 #That MEANS x is now 20print(x) #Output given belowCorrect output :-20So the code will print 20 | |