Qus : The function pow(x,y,z) is evaluated as:
Qusफ़ंक्शन pow(x, y, z) का मूल्यांकन इस प्रकार है:
A. (x**y)**z B. (x**y) / z
C. (x**y) % z D. (x**y)*z
Solution
C. (x**y) % z
Explanation
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.