Computer Science, asked by palakrajput2409, 10 months ago

what will be the output of ......print ((3*2)**2)​

Answers

Answered by shivakumarjagadish12
4

Answer:

36

Explanation:

see here;

3*2

that is 3x2

which is 6

now (6)**2

that is 6^2

which is 36

so if you write in the treminal 'python' then this will pop up

....

>>> print((3*2)**2)

>>> 36

hope it helped ya!

Answered by anindyaadhikari13
3

Answer:-

(3*2)**2

=6**2

=6²

=36

So, 36 is printed.

Output:-

36

Similar questions