

InterviewSolution
Saved Bookmarks
1. |
What does math.sqrt(X, Y) do?(a) calculate the Xth root of Y(b) calculate the Yth root of X(c) error(d) return a tuple with the square root of X and Y |
Answer» Right option is (c) error For explanation: The function takes only one argument. |
|