Q:

The function pow(x,y,z) is evaluated as:

0

The function pow(x,y,z) is evaluated as:

The built-in function pow() can accept two or three arguments. When it takes in two arguments, they are evaluated as x**y. When it takes in three arguments, they are evaluated as (x**y)%z.


  1. (x**y)**z
  2. (x**y) / z
  3. (x**y) % z
  4. (x**y)*z

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

(x**y) % z

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What will be the output of the following Python fu... >>
<< What will be the output of the following Python li...