Computer Science, asked by itsmepvk2003, 5 months ago

Assume the variable x has been initialized to an integer value (e.g., x = 3). What does the following statement do?

x = x + 2


Answers

Answered by Crazy1python
2

Answer:

x will be taking the new value ie. x=(3+2)

which is = 5

Explanation:

Answered by nilayanand2006
0

Answer:

It will add 2 to the value of x

Explanation:

Similar questions