M
Q. The expression 2**2**3 is evaluates as: (2**2)**3.
Explanation by: Mr. Dubey
the value of the expression (2**2)**3 = 4**3 = 64. when the expression 2**2**3 is evaluated in python, we get the result as 256, because this expression is evaluated as 2**(2**3). this is because the associativity of exponentiation operator (**) is from right to left and not from left to right.
You must be Logged in to update hint/solution
Be the first to start discuss.
Related MCQs
Q. The normal form which satisfies multivalued dependencies and which is in BCNF is
Q. Which of the following is used as middleware layer in the following figure?
Q. The load and index is_______.
Q. Chance Nodes are represented by
Q. A block that is not allowed to be written back to disk is said to be
Question analytics

Discusssion
Login to discuss.