The SUM function:

A) displays the lowest value in a range.
B) identifies the midpoint value in a set of values.
C) calculates the arithmetic mean or average of values in a range.
D) calculates the total of values contained in two or more cells.


D

Computer Science & Information Technology

You might also like to view...

Which IP address class is used for experimentation?

A. Class A B. Class B C. Class D D. Class E

Computer Science & Information Technology

The usual sequence of incident escalation during help desk incident management is ____.

A. from technical support to product specialist B. from incident screener to technical support C. from support management to incident screener D. from incident screener to product specialist

Computer Science & Information Technology

Consider the following function to calculate the nth Fibonacci number:long fib (long num){    if (num == 0 || num == 1)        return num;    return (fib (num - 1) + fib (num - 2));}What is(are) the base case(s)?

A. 0 B. 1 C. 0 and 1 D. num - 1

Computer Science & Information Technology

Which statement is false?

a) Using global variables, instead of passing arguments, can increase program performance, but reduce effective software engineering. b) Hardcoding into a function the size of an array that will be passed as an argument rather than passing the size of the array as a parameter, reduces the software reusability of that function. c) sizeof is an operator that calculates the size of its argument in bytes at compile time. d) When applied to the name of an array, sizeof returns the number of elements in the array.

Computer Science & Information Technology