Question

Select the result obtained when you run the following program:

print(pow(2))

Question

Select the result obtained when you run the following program:

print(pow.__doc__)

Question

Select which single change, if any, is needed for the program below to run without resulting in an error message.

print(dir(pi))

Question

Select the result obtained when you run the following program:

import(math)
print(- math.sqrt(4.0))

Question

Select the result obtained when you run the following program:

print(int(7.4))

Question

In the box provided, enter the result obtained when you run the following program:

import math
print(math.fmod(19.0, 4))

Question

Select all choices that result in a floating point number after the math module has been imported. There may be more than one correct choice.

Question

Select all choices that produce the square of 5. There may be more than one correct choice.

Question

In the box provided, enter the result obtained when you run the following program:

print(int(float("-2.2")))

Question

Select all choices that run without resulting in an error message. There may be more than one correct choice.