0
Can you solve this (3**2)//2)
I am efforting to solve this problem
2 Answers
+ 1
The correct question is ((3**2)//2)
The "**" symbol means RAISED TO THE POWER OF
So, here it's 3 raised to the power of 2 which is 9
Now, "//" means floor division which will return the nearest integer to the result
now 9//2 = 4 (Origional answer is 4.5 but it will return the nearest integer)
HENCE THE ANSWER WILL BE 4.
0
Go to code section, click on +, select Python.
Print the term and convince yourself what the output is