Computer Science, asked by aaryansharma200411, 7 months ago

Write the output of the following if x = 8.

>>> x + = 8

>>> x - = 8

>>> x * = 8

>>> x ** = 2

>>> x % = 8

>>>x / = 8 >>> x // = 8

Answers

Answered by nagendra2717
1

Answer:

++x=5 //incrementation of x by 1, x=x+1=>4+1=5

now, x=5 //x becomes 5 due to incrementation

++x*4/x=>5*4/5=4

y=++x*4/x+x

=4+5

=9

Now, y=9 and x=5

So, output will be 9+5= 14

The incremented value of x is used in place of x...

So output you'll get is 14...

Explanation:

please mark as brainlist and thanks

Similar questions