A disk ____ is a predefined temporary data storage location.

A. buffer
B. log
C. cache
D. filter


Answer: C

Computer Science & Information Technology

You might also like to view...

Which is not a way to proceed when creating a catalog of forms to help you understand the information flow currently in use in business?

A) Collect examples of all the forms in use. B) Note the type of form. C) Document the intended distribution pattern. D) Compare the intended distribution pattern with who actually analyzes the form.

Computer Science & Information Technology

Get a sound. Run increaseVolume on the sound, and then onlyMaximize on the same sound. Get an original copy of the sound. Now, run fauxIncreaseVolume on the new copy, and then onlyMaximize on the output of fauxIncreaseVolume. The sounds will sound different. If the sound had words in it, the words will be much clearer after running fauxIncreaseVolume. Why is that?

What will be an ideal response?

Computer Science & Information Technology

How do you select and cut a text line using the Vim editor?

What will be an ideal response?

Computer Science & Information Technology

Assume that the user has entered the value 27 into ageJTextField. Determine what is displayed in outputJTextField by the following code:

``` 1 int age = Integer.parseInt( ageJTextField.getText() ); 2 3 if ( age < 0 ) 4 { 5 outputJTextField.setText( 6 "Enter a value greater than or equal to zero." ); 7 } 8 else if ( age < 13 ) 9 { 10 outputJTextField.setText( "Child" ); 11 } 12 else if ( age < 20 ) 13 { 14 outputJTextField.setText( "Teenager" ); 15 } 16 else if ( age < 30 ) 17 { 18 outputJTextField.setText( "Young Adult" ); 19 } 20 else if ( age < 65 ) 21 { 22 outputJTextField.setText( "Adult" ); 23 } 24 else 25 { 26 outputJTextField.setText( "Senior Citizen" ); 27 } ```

Computer Science & Information Technology