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

52.
What is the purpose of the built-in function abs()?

53.
What does the built-in function sorted() do in Python?

54.
What will be the output of the following code:
my_string = "Hello, World!"
print(my_string.replace("Hello", "Hi"))

55.
Which of the following functions accepts only integers as arguments?

56.
What will be the output of the following Python function?
divmod(10.5,5)
divmod(2.4,1.2)

57.
What will be the output of the following code:
my_list = [1, 2, 3, 4]
print(len(my_list))

58.
The function complex('2-3j') is valid but the function complex('2 - 3j') is invalid.

59.
Suppose there is a list such that: l=[2,3,4]. If we want to print this list in reverse order, which of the following methods should be used?