A

Admin • 833K Points
Coach

Q. What is the output of `print(2 ** 3 ** 2)`?

  • (A) 64
  • (B) 512
  • (C) 256
  • (D) Error
  • Correct Answer - Option(B)
  • Views: 28
  • Filed under category Python
  • Hashtags:

Explanation by: Admin

The expression is evaluated as `2 ** (3 ** 2)` = `2 ** 9` = `512`.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.