Computer Science, asked by Prabalpratap5325, 8 months ago

>>>x=15
>>>x=x+5
>>>x=print(x)
what will be the following program print out

Answers

Answered by BrainlyProgrammer
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