A "Range"
A) are the numbers that fall between the smallest and largest in the formula.
B) refers to a group of adjacent or contiguous cells.
C) cannot be selected with the mouse.
D) is another word for the active worksheet.
B
You might also like to view...
Which statement is true regarding the CInt function?
a. It converts letters to numbers. b. It cannot convert a string such as "24.7" to an integer. c. A floating-point number such as 24.7 is converted to 24, dropping its decimal positions. d. A floating-point number such as 24.7 is converted to 25, rounding its decimal positions.
If n were negative, the driver can get the correct answer via function p by using the line of code:
``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. return 1 / p( x, -n ); B. return 1 / p( x, n ); C. return p( x, -n ); D. return p( x, n );