Which of the following statements is false?

a. An import statement of the following form enables you to use a module’s definitions via the module’s name and a dot (.):
import math
b. The following snippet calculates the square root of 900 by calling the math module’s sqrt function, which returns its result as a float value:
math.sqrt(900)
c. The following snippet calculates the absolute value of -10 by calling the math module’s fabs function, which returns its result as a float value:
math.fabs(-10)
d. The value of the expression floor(–3.14159) is –3.0.


d. The value of the expression floor(–3.14159) is –3.0.

Computer Science & Information Technology

You might also like to view...

If a problem specification indicates that the program's user wants to see the amount of her annual commission displayed on the screen, the ____ is the annual commission.

A. yield B. output C. symbol D. input

Computer Science & Information Technology

When you have more than one computer sharing resources such as a printer or storage device, you may have a specialized computer to manage the shared resources called a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

In a database, data is stored in a ________

A) table B) report C) form D) query

Computer Science & Information Technology

A ____________ is used to make connections between the network interface card and the other vital components of the computer, such as the central processing unit.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology