adplus-dvertising
frame-decoration

Question

What is returned by int(math.pow(3, 2))?

a.

6

b.

9

c.

error, third argument required

d.

error, too many arguments

Answer: (b).9

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is returned by int(math.pow(3, 2))?

Similar Questions

Discover Related MCQs

Q. What is output of print(math.pow(3, 2))?

Q. What is the value of x if x = math.sqrt(4)?

Q. What does math.sqrt(X, Y) do?

Q. The value returned when we use the function isoweekday() is ______ and that for the function weekday() is ________ if the system date is 19th June, 2017 (Monday).

Q. To include the use of functions which are present in the random library, we must use the option:

Q. What the does random.seed(3) return?

Q. Which of the following cannot be returned by random.randrange(4)?

Q. Which of the following is equivalent to random.randrange(3)?

Q. The function random.randint(4) can return only one of the following values. Which?

Q. Which of the following is equivalent to random.randint(3, 6)?

Q. Which of the following will not be returned by random.choice(“1 ,”)?

Q. Which of the following will never be displayed on executing print(random.choice({0: 1, 2: 3}))?

Q. What does random.shuffle(x) do when x = [1, 2, 3]?

Q. Which type of elements are accepted by random.shuffle()?

Q. What is the range of values that random.random() can return?

Q. Which of the following functions can help us to find the version of python that we are currently working on?

Q. Which of the following functions is not defined under the sys module?

Q. The output of the functions len(“abc”) and sys.getsizeof(“abc”) will be the same. State whether true or false.

Q. What does os.name contain?

Q. What does print(os.geteuid()) print?