A(n) ________ statistic is a calculation for a group of data such as a total, an average, or a count
A) logical B) comparison C) summary D) expression
C
Computer Science & Information Technology
You might also like to view...
The AND function evaluates two conditions; if one or both of the conditions is True, the displayed value will be TRUE
Indicate whether the statement is true or false.
Computer Science & Information Technology
In the following code segment, what type of variable is counter?
``` Dim temp, counter, check As Integer Do temp = CInt(InputBox("Enter a number.")) counter += temp If counter = 10 Then check = 0 End If Loop Until (check = 0) ``` (A) counter (B) accumulator (C) sentinel (D) loop control variable
Computer Science & Information Technology