फ़ंक्शन pow(x,y,z) का मूल्यांकन इस प्रकार किया जाता है:
The function pow(x,y,z) is evaluated as:
A)
B)
C)
D)
Explanation:
The pow(x, y, z)
function in Python is evaluated as:
(xy) % z
This means that it computes xyx^y (x raised to the power y), and then takes the result modulo z.
So the correct answer is:
(C) (xy) % z