The ____ is often used as a statistic in many cases because it represents a more typical case.

A. mode
B. mean
C. average
D. median


Answer: D

Computer Science & Information Technology

You might also like to view...

Which of the following creates the string of the numbers from 1 to 1000 most efficiently?

a. ``` String s; for (int i = 1; i <= 1000; i++) s += i; ``` b. ``` StringBuilder sb = new StringBuilder(10); for (int i = 1; i <= 1000; i++) sb.append(i); String s = new String(sb); ``` c. ``` StringBuilder sb = new StringBuilder(3000); for (int i = 1; i <= 1000; i++) sb.append(i); String s = new String(sb); ``` d. All are equivalently efficient.

Computer Science & Information Technology

The device that allows two different networks to communicate with one another is:

A. a repeater B. a hub C. a router D. an access point

Computer Science & Information Technology

Functions in an ADT can be public and private.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Automatic Updates

A. Only Windows XP B. Windows XP and Vista C. Windows Vista and 7

Computer Science & Information Technology