You can reduce the size of electronic documents when transferring them over the Internet by using a process called _____.

A. zipping
B. shrinking
C. contracting
D. diminishing

Answer: A

Computer Science & Information Technology

You might also like to view...

The Job Table (JT) contains two values for each active job: the size of the job and the memory location where its Page Map Table is stored.

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

Computer Science & Information Technology

What is the output of the following code?

``` int[] numbers = new int[10]; for(int i=0; i < numbers.length; ++i) numbers[i] = i * 2; for(int i=0; i < numbers.length; ++i) System.out.print(numbers[i] + " "); System.out.println(); ```

Computer Science & Information Technology