When a file on a personal computer is deleted, it is physically erased from the volume (disk) but now becomes available space

Indicate whether the statement is true or false.

False -- When a file is deleted, it is still physically stored on a volume. However, that space is now available to be overwritten.

Computer Science & Information Technology

You might also like to view...

To delete an email, click the ________ X in the top-right corner of the email listing

A) red B) green C) black D) blue

Computer Science & Information Technology

Which of the following prototypes would be appropriate for a function whose purpose is to write to a text file a class Bird object? The function does not open the output file; it assumes the file is already open.

a. void writeBird( ofstream&, const Bird& ); b. void writeBird( ifstream&, const Bird& ); c. void writeBird( cout, Bird ); d. void writeBird( const string& Bird );

Computer Science & Information Technology