

InterviewSolution
Saved Bookmarks
1. |
The function pow(x,y,z) is evaluated as:(a) (x**y)**z(b) (x**y) / z(c) (x**y) % z(d) (x**y)*z |
Answer» Correct option is (c) (x**y) % z To explain: 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. |
|