On a pie chart, the ________ indicates which pie slice is associated with which data series

Fill in the blank(s) with correct word


legend

Computer Science & Information Technology

You might also like to view...

The effect of the following program segment can best be described as __________.

``` if (x > y) z = x; if (x == y) z = 0; if (x < y) z = y; ``` a. The smaller of x and y is stored in z. b. The larger of x and y is stored in z. c. The larger of x and y is stored in z unless x and y are equal, in which case z is assigned zero. d. The larger of x and y is stored in z unless x and y are not equal, in which case z is assigned zero. e. none of the above

Computer Science & Information Technology

Input an Internet address from input stream

What will be an ideal response?

Computer Science & Information Technology

Which statements are most accurate regarding the following classes?

```
class A {
  private int i;
  protected int j;
}

class B extends A {
  private int k;
  protected int m;

  // some methods omitted
}
```

a. In the class B, an instance method can only access i, j, k, m.
b. In the class B, an instance method can only access j, k, m.
c. In the class B, an instance method can only access j, m.
d. In the class B, an instance method can only access k, m.

Computer Science & Information Technology

All of the following are disadvantages of the test data technique except

A. the test data technique requires extensive computer expertise on the part of the auditor B. the auditor cannot be sure that the application being tested is a copy of the current application used by computer services personnel C. the auditor cannot be sure that the application being tested is the same application used throughout the entire year D. preparation of the test data is time-consuming

Computer Science & Information Technology