>>>x=15
>>>x=x+5
>>>x=print(x)
what will be the following program print out
Answers
Answered by
3
Question:-
>>>x=15
>>>x=x+5
>>>print(x)
What will be the output of the program
Given ,
x=15
x=x+5 #That means x is now 20
print(x) #Output given below
Correct output :-
- 20
So the code will print 20
Similar questions
English,
5 months ago
Physics,
5 months ago
Math,
5 months ago
Computer Science,
11 months ago
Math,
11 months ago
Social Sciences,
1 year ago
Social Sciences,
1 year ago