If you have a table containing sales data, you could use ________ rules to identify the three highest sales transactions

A) Extremes B) Top/Bottom
C) Maximum/Minimum D) High/Low


B

Computer Science & Information Technology

You might also like to view...

Which of the following would be a base case for a summation algorithm (the sum of the numbers from 0 to n)?

a. If n = 0 then summation(n) = 0 b. if n > 0 then summation(n) = 5 c. If n > 0 then summation(n) = get Value(n) d. If n > 0 then summation(n) = n + summation(n-1) e. None of these

Computer Science & Information Technology

An argument is a constant, variable, or class that is passed to an argument

Indicate whether the statement is true or false

Computer Science & Information Technology

The Windows 8 operating system supports ________ devices

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the output of the following Java code?int[] list = {0, 5, 10, 15, 20};for (int j = 0; j < 5; j++)    System.out.print(list[j] + " "); System.out.println();

A. 0 1 2 3 4 B. 0 5 10 15 20 C. 0, 5, 10, 15, 20 D. 0 5 10  15

Computer Science & Information Technology